source: libcfa/src/Makefile.am @ 4c6ba5a

ADTast-experimental
Last change on this file since 4c6ba5a was 360bfe41, checked in by Andrew Beach <ajbeach@…>, 15 months ago

Whitespace clean-up in Makefile.

  • Property mode set to 100644
File size: 6.9 KB
Line 
1######################## -*- Mode: Makefile-Automake -*- ######################
2##
3## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
4##
5## The contents of this file are covered under the licence agreement in the
6## file "LICENCE" distributed with Cforall.
7##
8## Makefile.am --
9##
10## Author           : Peter A. Buhr
11## Created On       : Sun May 31 08:54:01 2015
12## Last Modified By : Peter A. Buhr
13## Last Modified On : Fri Jul 16 16:00:40 2021
14## Update Count     : 255
15###############################################################################
16
17# create object files in directory with source files
18AUTOMAKE_OPTIONS = foreign subdir-objects
19ACLOCAL_AMFLAGS  = -I automake
20
21include $(top_srcdir)/../tools/build/cfa.make
22
23libdir = ${CFA_LIBDIR}
24lib_LTLIBRARIES = libcfa.la libcfathread.la
25
26VPATH += :../prelude
27
28gdbwaittarget=""
29
30# AM_CFLAGS for all cfa source
31# AM_CFAFLAGS for only cfa source
32# use -no-include-stdhdr to prevent rebuild cycles
33# The built sources must not depend on the installed inst_headers_src
34AM_CFAFLAGS = -quiet -cfalib -I$(srcdir)/stdhdr -I$(srcdir)/concurrency $(if $(findstring ${gdbwaittarget}, ${@}), -XCFA --gdb) @CONFIG_CFAFLAGS@
35AM_CFLAGS = -g -Wall -Werror=return-type -Wno-unused-function -fPIC -fexceptions -fvisibility=hidden -pthread @ARCH_FLAGS@ @CONFIG_CFLAGS@
36AM_CCASFLAGS = -g -Wall -Werror=return-type -Wno-unused-function @ARCH_FLAGS@ @CONFIG_CFLAGS@
37CFACC = @CFACC@
38
39#----------------------------------------------------------------------------------------------------------------
40if BUILDLIB
41inst_headers_nosrc = \
42        bitmanip.hfa \
43        clock.hfa \
44        exception.hfa \
45        exception.h \
46        gmp.hfa \
47        math.trait.hfa \
48        math.hfa \
49        time_t.hfa \
50        virtual_dtor.hfa \
51        bits/algorithm.hfa \
52        bits/align.hfa \
53        bits/containers.hfa \
54        bits/debug.hfa \
55        bits/defs.hfa \
56        bits/locks.hfa \
57        bits/collection.hfa \
58        bits/stack.hfa \
59        bits/queue.hfa \
60        bits/sequence.hfa \
61        concurrency/iofwd.hfa \
62        concurrency/barrier.hfa \
63        containers/array.hfa \
64        containers/list.hfa \
65        containers/lockfree.hfa \
66        containers/string_sharectx.hfa \
67        containers/vector2.hfa \
68        vec/vec.hfa \
69        vec/vec2.hfa \
70        vec/vec3.hfa \
71        vec/vec4.hfa
72
73inst_headers_src = \
74        common.hfa \
75        fstream.hfa \
76        heap.hfa \
77        iostream.hfa \
78        iterator.hfa \
79        limits.hfa \
80        memory.hfa \
81        parseargs.hfa \
82        parseconfig.hfa \
83        rational.hfa \
84        stdlib.hfa \
85        strstream.hfa \
86        time.hfa \
87        bits/weakso_locks.hfa \
88        algorithms/range_iterator.hfa \
89        containers/maybe.hfa \
90        containers/pair.hfa \
91        containers/result.hfa \
92        containers/string.hfa \
93        containers/string_res.hfa \
94        containers/vector.hfa \
95        device/cpu.hfa
96
97libsrc = ${inst_headers_src} ${inst_headers_src:.hfa=.cfa} \
98        assert.cfa \
99        bits/debug.cfa \
100        exception.c \
101        interpose.cfa \
102        lsda.h \
103        startup.cfa \
104        startup.hfa \
105        virtual.c \
106        virtual.h
107
108# not all platforms support concurrency, add option do disable it
109inst_thread_headers_nosrc = \
110        bits/random.hfa \
111        concurrency/clib/cfathread.h \
112        concurrency/invoke.h \
113        concurrency/future.hfa \
114        concurrency/once.hfa \
115        concurrency/kernel/fwd.hfa \
116        concurrency/mutex_stmt.hfa \
117    concurrency/select.hfa \
118    concurrency/channel.hfa \
119    concurrency/actor.hfa
120
121inst_thread_headers_src = \
122        concurrency/alarm.hfa \
123        concurrency/coroutine.hfa \
124        concurrency/exception.hfa \
125        concurrency/kernel.hfa \
126        concurrency/kernel/cluster.hfa \
127        concurrency/locks.hfa \
128        concurrency/monitor.hfa \
129        concurrency/mutex.hfa \
130        concurrency/thread.hfa
131
132thread_libsrc = ${inst_thread_headers_src} ${inst_thread_headers_src:.hfa=.cfa} \
133        interpose_thread.cfa \
134        bits/signal.hfa \
135        concurrency/clib/cfathread.cfa \
136        concurrency/CtxSwitch-@ARCHITECTURE@.S \
137        concurrency/invoke.c \
138        concurrency/io.cfa \
139        concurrency/io/setup.cfa \
140        concurrency/io/types.hfa \
141        concurrency/io/call.cfa \
142        concurrency/iofwd.hfa \
143        concurrency/kernel/private.hfa \
144        concurrency/kernel/startup.cfa \
145        concurrency/preemption.cfa \
146        concurrency/preemption.hfa \
147        concurrency/ready_queue.cfa \
148        concurrency/ready_subqueue.hfa \
149        concurrency/snzi.hfa \
150        concurrency/stats.cfa \
151        concurrency/stats.hfa \
152        concurrency/stats.hfa \
153        concurrency/pthread.cfa
154
155else
156inst_headers_src =
157inst_thread_headers_src =
158inst_headers_nosrc =
159inst_thread_headers_nosrc =
160libsrc =
161endif
162
163
164#----------------------------------------------------------------------------------------------------------------
165# add dependency to cfa-cpp so all libraries are rebuilt with new translator
166#@CFACC@ @CFACPP@ prelude.cfa
167
168# add dependency of cfa files
169libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc))))
170$(libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
171
172thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc))))
173$(thread_libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
174
175
176# .deps inclusion is not done automatically by automake for new languages
177libdeps = $(join \
178        $(addsuffix $(DEPDIR)/ , $(dir $(libobjs) ) ), \
179        $(notdir ${libobjs:.lo=.Plo}) \
180)
181
182-include $(libdeps)
183
184thread_libdeps = $(join \
185        $(addsuffix $(DEPDIR)/ , $(dir $(thread_libobjs) ) ), \
186        $(notdir ${thread_libobjs:.lo=.Plo}) \
187)
188
189-include $(thread_libdeps)
190
191
192if ENABLE_DISTCC
193
194../prelude/distribution: @LOCAL_CFACC@ @LOCAL_CC1@ @CFACPP@ ../prelude/defines.hfa ../prelude/gcc-builtins.cf ../prelude/builtins.cf ../prelude/extras.cf ../prelude/prelude.cfa ../prelude/bootloader.c $(srcdir)/../../tools/build/push2dist.sh
195        @+make -C ../prelude distribution
196
197prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution
198
199endif ENABLE_DISTCC
200
201prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
202        ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
203
204prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
205        ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
206        $(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
207
208concurrency/io/call.cfa: $(srcdir)/concurrency/io/call.cfa.in
209        ${AM_V_GEN}python3 $< > $@
210
211#----------------------------------------------------------------------------------------------------------------
212libcfa_la_SOURCES = ${libsrc}
213nodist_libcfa_la_SOURCES = prelude.cfa
214libcfa_la_LDFLAGS = -version-info @CFA_VERSION@
215
216libcfathread_la_SOURCES = ${thread_libsrc}
217libcfathread_la_LDFLAGS = -version-info @CFA_VERSION@
218
219stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
220
221cfa_includedir = $(CFA_INCDIR)
222nobase_cfa_include_HEADERS = ${stdhdr} ${inst_headers_src} ${inst_headers_nosrc} ${inst_thread_headers_src} ${inst_thread_headers_nosrc}
223EXTRA_DIST = stdhdr
224DISTCLEANFILES = $(libdeps) $(thread_libdeps)
225
226#----------------------------------------------------------------------------------------------------------------
227maintainer-clean-local:
228        -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
229
230#distclean-local:
231#       find ${builddir} -path '*.Plo' -delete
232
233
234# $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
235#       $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
236#       $(am__mv) $$depbase.Tpo $$depbase.Po
Note: See TracBrowser for help on using the repository browser.