source: libcfa/src/Makefile.am @ 38de914

Last change on this file since 38de914 was 3543e99, checked in by Peter A. Buhr <pabuhr@…>, 11 months ago

move exception macros from common.hfa to their own include file Exception.hfa

  • 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 : Mon Aug 14 17:10:51 2023
14## Update Count     : 262
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/containers.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        containers/array.hfa \
66        containers/list.hfa \
67        containers/lockfree.hfa \
68        containers/string_sharectx.hfa \
69        containers/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        containers/maybe.hfa \
92        containers/pair.hfa \
93        containers/result.hfa \
94        containers/string.hfa \
95        containers/string_res.hfa \
96        containers/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
134thread_libsrc = ${inst_thread_headers_src} ${inst_thread_headers_src:.hfa=.cfa} \
135        interpose_thread.cfa \
136        bits/signal.hfa \
137        concurrency/clib/cfathread.cfa \
138        concurrency/CtxSwitch-@ARCHITECTURE@.S \
139        concurrency/invoke.c \
140        concurrency/io.cfa \
141        concurrency/io/setup.cfa \
142        concurrency/io/types.hfa \
143        concurrency/io/call.cfa \
144        concurrency/iofwd.hfa \
145        concurrency/kernel/private.hfa \
146        concurrency/kernel/startup.cfa \
147        concurrency/preemption.cfa \
148        concurrency/preemption.hfa \
149        concurrency/ready_queue.cfa \
150        concurrency/ready_subqueue.hfa \
151        concurrency/snzi.hfa \
152        concurrency/stats.cfa \
153        concurrency/stats.hfa \
154        concurrency/stats.hfa \
155        concurrency/pthread.cfa
156
157else
158inst_headers_src =
159inst_thread_headers_src =
160inst_headers_nosrc =
161inst_thread_headers_nosrc =
162libsrc =
163endif
164
165
166#----------------------------------------------------------------------------------------------------------------
167# add dependency to cfa-cpp so all libraries are rebuilt with new translator
168#@CFACC@ @CFACPP@ prelude.cfa
169
170# add dependency of cfa files
171libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc))))
172$(libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
173
174thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc))))
175$(thread_libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
176
177
178# .deps inclusion is not done automatically by automake for new languages
179libdeps = $(join \
180        $(addsuffix $(DEPDIR)/ , $(dir $(libobjs) ) ), \
181        $(notdir ${libobjs:.lo=.Plo}) \
182)
183
184-include $(libdeps)
185
186thread_libdeps = $(join \
187        $(addsuffix $(DEPDIR)/ , $(dir $(thread_libobjs) ) ), \
188        $(notdir ${thread_libobjs:.lo=.Plo}) \
189)
190
191-include $(thread_libdeps)
192
193
194if ENABLE_DISTCC
195
196../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
197        @+make -C ../prelude distribution
198
199prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution
200
201endif ENABLE_DISTCC
202
203prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
204        ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
205
206prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
207        ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
208        $(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
209
210concurrency/io/call.cfa: $(srcdir)/concurrency/io/call.cfa.in
211        ${AM_V_GEN}python3 $< > $@
212
213#----------------------------------------------------------------------------------------------------------------
214libcfa_la_SOURCES = ${libsrc}
215nodist_libcfa_la_SOURCES = prelude.cfa
216libcfa_la_LDFLAGS = -version-info @CFA_VERSION@
217
218libcfathread_la_SOURCES = ${thread_libsrc}
219libcfathread_la_LDFLAGS = -version-info @CFA_VERSION@
220
221stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
222
223cfa_includedir = $(CFA_INCDIR)
224nobase_cfa_include_HEADERS = ${stdhdr} ${inst_headers_src} ${inst_headers_nosrc} ${inst_thread_headers_src} ${inst_thread_headers_nosrc}
225EXTRA_DIST = stdhdr
226DISTCLEANFILES = $(libdeps) $(thread_libdeps)
227
228#----------------------------------------------------------------------------------------------------------------
229maintainer-clean-local:
230        -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
231
232#distclean-local:
233#       find ${builddir} -path '*.Plo' -delete
234
235
236# $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
237#       $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
238#       $(am__mv) $$depbase.Tpo $$depbase.Po
Note: See TracBrowser for help on using the repository browser.