source: libcfa/src/Makefile.am@ 681e12f

Last change on this file since 681e12f was be3f163, checked in by Peter A. Buhr <pabuhr@…>, 23 months ago

rename files gcc-builtins.cf builtins.cf extras.cf bootloader.cf and sync-builtins.cf with suffix .cfa

  • 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 : Wed Nov 1 19:03:42 2023
14## Update Count : 266
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 Exception.hfa \
43 bitmanip.hfa \
44 clock.hfa \
45 exception.hfa \
46 exception.h \
47 gmp.hfa \
48 math.trait.hfa \
49 math.hfa \
50 time_t.hfa \
51 virtual_dtor.hfa \
52 bits/algorithm.hfa \
53 bits/align.hfa \
54 bits/collections.hfa \
55 bits/debug.hfa \
56 bits/defs.hfa \
57 bits/locks.hfa \
58 bits/collection.hfa \
59 bits/stack.hfa \
60 bits/queue.hfa \
61 bits/sequence.hfa \
62 concurrency/atomic.hfa \
63 concurrency/iofwd.hfa \
64 concurrency/barrier.hfa \
65 collections/array.hfa \
66 collections/list.hfa \
67 collections/lockfree.hfa \
68 collections/string_sharectx.hfa \
69 collections/vector2.hfa \
70 vec/vec.hfa \
71 vec/vec2.hfa \
72 vec/vec3.hfa \
73 vec/vec4.hfa
74
75inst_headers_src = \
76 common.hfa \
77 fstream.hfa \
78 heap.hfa \
79 iostream.hfa \
80 iterator.hfa \
81 limits.hfa \
82 memory.hfa \
83 parseargs.hfa \
84 parseconfig.hfa \
85 rational.hfa \
86 stdlib.hfa \
87 strstream.hfa \
88 time.hfa \
89 bits/weakso_locks.hfa \
90 algorithms/range_iterator.hfa \
91 collections/maybe.hfa \
92 collections/pair.hfa \
93 collections/result.hfa \
94 collections/string.hfa \
95 collections/string_res.hfa \
96 collections/vector.hfa \
97 device/cpu.hfa
98
99libsrc = ${inst_headers_src} ${inst_headers_src:.hfa=.cfa} \
100 assert.cfa \
101 bits/debug.cfa \
102 exception.c \
103 interpose.cfa \
104 lsda.h \
105 startup.cfa \
106 startup.hfa \
107 virtual.c \
108 virtual.h
109
110# not all platforms support concurrency, add option do disable it
111inst_thread_headers_nosrc = \
112 bits/random.hfa \
113 concurrency/clib/cfathread.h \
114 concurrency/invoke.h \
115 concurrency/future.hfa \
116 concurrency/once.hfa \
117 concurrency/kernel/fwd.hfa \
118 concurrency/mutex_stmt.hfa \
119 concurrency/channel.hfa \
120 concurrency/actor.hfa
121
122inst_thread_headers_src = \
123 concurrency/alarm.hfa \
124 concurrency/coroutine.hfa \
125 concurrency/exception.hfa \
126 concurrency/kernel.hfa \
127 concurrency/kernel/cluster.hfa \
128 concurrency/locks.hfa \
129 concurrency/monitor.hfa \
130 concurrency/mutex.hfa \
131 concurrency/select.hfa \
132 concurrency/thread.hfa \
133 concurrency/cofor.hfa
134
135thread_libsrc = ${inst_thread_headers_src} ${inst_thread_headers_src:.hfa=.cfa} \
136 interpose_thread.cfa \
137 bits/signal.hfa \
138 concurrency/clib/cfathread.cfa \
139 concurrency/CtxSwitch-@ARCHITECTURE@.S \
140 concurrency/invoke.c \
141 concurrency/io.cfa \
142 concurrency/io/setup.cfa \
143 concurrency/io/types.hfa \
144 concurrency/io/call.cfa \
145 concurrency/iofwd.hfa \
146 concurrency/kernel/private.hfa \
147 concurrency/kernel/startup.cfa \
148 concurrency/preemption.cfa \
149 concurrency/preemption.hfa \
150 concurrency/ready_queue.cfa \
151 concurrency/ready_subqueue.hfa \
152 concurrency/snzi.hfa \
153 concurrency/stats.cfa \
154 concurrency/stats.hfa \
155 concurrency/stats.hfa \
156 concurrency/pthread.cfa
157
158else
159inst_headers_src =
160inst_thread_headers_src =
161inst_headers_nosrc =
162inst_thread_headers_nosrc =
163libsrc =
164endif
165
166
167#----------------------------------------------------------------------------------------------------------------
168# add dependency to cfa-cpp so all libraries are rebuilt with new translator
169#@CFACC@ @CFACPP@ prelude.cfa
170
171# add dependency of cfa files
172libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc))))
173$(libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
174
175thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc))))
176$(thread_libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
177
178
179# .deps inclusion is not done automatically by automake for new languages
180libdeps = $(join \
181 $(addsuffix $(DEPDIR)/ , $(dir $(libobjs) ) ), \
182 $(notdir ${libobjs:.lo=.Plo}) \
183)
184
185-include $(libdeps)
186
187thread_libdeps = $(join \
188 $(addsuffix $(DEPDIR)/ , $(dir $(thread_libobjs) ) ), \
189 $(notdir ${thread_libobjs:.lo=.Plo}) \
190)
191
192-include $(thread_libdeps)
193
194
195if ENABLE_DISTCC
196
197../prelude/distribution: @LOCAL_CFACC@ @LOCAL_CC1@ @CFACPP@ ../prelude/defines.hfa ../prelude/gcc-builtins.cfa ../prelude/builtins.cfa ../prelude/extras.cfa ../prelude/prelude.cfa ../prelude/bootloader.c $(srcdir)/../../tools/build/push2dist.sh
198 @+make -C ../prelude distribution
199
200prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution
201
202endif ENABLE_DISTCC
203
204prelude.o : prelude.cfa extras.cfa gcc-builtins.cfa builtins.cfa @LOCAL_CFACC@ @CFACPP@
205 ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
206
207prelude.lo: prelude.cfa extras.cfa gcc-builtins.cfa builtins.cfa @LOCAL_CFACC@ @CFACPP@
208 ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
209 $(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
210
211concurrency/io/call.cfa: $(srcdir)/concurrency/io/call.cfa.in
212 ${AM_V_GEN}python3 $< > $@
213
214#----------------------------------------------------------------------------------------------------------------
215libcfa_la_SOURCES = ${libsrc}
216nodist_libcfa_la_SOURCES = prelude.cfa
217libcfa_la_LDFLAGS = -version-info @CFA_VERSION@
218
219libcfathread_la_SOURCES = ${thread_libsrc}
220libcfathread_la_LDFLAGS = -version-info @CFA_VERSION@
221
222stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
223
224cfa_includedir = $(CFA_INCDIR)
225nobase_cfa_include_HEADERS = ${stdhdr} ${inst_headers_src} ${inst_headers_nosrc} ${inst_thread_headers_src} ${inst_thread_headers_nosrc}
226EXTRA_DIST = stdhdr
227DISTCLEANFILES = $(libdeps) $(thread_libdeps)
228
229#----------------------------------------------------------------------------------------------------------------
230maintainer-clean-local:
231 -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
232
233#distclean-local:
234# find ${builddir} -path '*.Plo' -delete
235
236
237# $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
238# $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
239# $(am__mv) $$depbase.Tpo $$depbase.Po
Note: See TracBrowser for help on using the repository browser.