source: libcfa/src/Makefile.am@ 7270432

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 7270432 was eef8dfb, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Merge branch 'master' into dkobets-vector

  • Property mode set to 100644
File size: 6.1 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 Dec 9 22:46:14 2020
14## Update Count : 250
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 -Wno-unused-function -fPIC -fexceptions -pthread @ARCH_FLAGS@ @CONFIG_CFLAGS@
36AM_CCASFLAGS = -g -Wall -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.hfa \
48 time_t.hfa \
49 bits/align.hfa \
50 bits/containers.hfa \
51 bits/debug.hfa \
52 bits/defs.hfa \
53 bits/locks.hfa \
54 bits/collection.hfa \
55 bits/stack.hfa \
56 bits/queue.hfa \
57 bits/sequence.hfa \
58 concurrency/iofwd.hfa \
59 containers/list.hfa \
60 containers/stackLockFree.hfa \
61 vec/vec.hfa \
62 vec/vec2.hfa \
63 vec/vec3.hfa \
64 vec/vec4.hfa
65
66inst_headers_src = \
67 common.hfa \
68 fstream.hfa \
69 heap.hfa \
70 iostream.hfa \
71 iterator.hfa \
72 limits.hfa \
73 memory.hfa \
74 parseargs.hfa \
75 rational.hfa \
76 stdlib.hfa \
77 time.hfa \
78 containers/maybe.hfa \
79 containers/pair.hfa \
80 containers/result.hfa \
81 containers/vector.hfa
82
83libsrc = ${inst_headers_src} ${inst_headers_src:.hfa=.cfa} \
84 assert.cfa \
85 bits/algorithm.hfa \
86 bits/debug.cfa \
87 exception.c \
88 interpose.cfa \
89 lsda.h \
90 startup.cfa \
91 startup.hfa \
92 virtual.c \
93 virtual.h
94
95# not all platforms support concurrency, add option do disable it
96inst_thread_headers_nosrc = \
97 bits/random.hfa \
98 concurrency/clib/cfathread.h \
99 concurrency/invoke.h \
100 concurrency/future.hfa \
101 concurrency/kernel/fwd.hfa
102
103inst_thread_headers_src = \
104 concurrency/coroutine.hfa \
105 concurrency/exception.hfa \
106 concurrency/kernel.hfa \
107 concurrency/locks.hfa \
108 concurrency/monitor.hfa \
109 concurrency/mutex.hfa \
110 concurrency/thread.hfa
111
112thread_libsrc = ${inst_thread_headers_src} ${inst_thread_headers_src:.hfa=.cfa} \
113 bits/signal.hfa \
114 concurrency/alarm.cfa \
115 concurrency/alarm.hfa \
116 concurrency/clib/cfathread.cfa \
117 concurrency/CtxSwitch-@ARCHITECTURE@.S \
118 concurrency/invoke.c \
119 concurrency/io.cfa \
120 concurrency/io/setup.cfa \
121 concurrency/io/types.hfa \
122 concurrency/io/call.cfa \
123 concurrency/iofwd.hfa \
124 concurrency/kernel_private.hfa \
125 concurrency/kernel/startup.cfa \
126 concurrency/preemption.cfa \
127 concurrency/preemption.hfa \
128 concurrency/ready_queue.cfa \
129 concurrency/ready_subqueue.hfa \
130 concurrency/snzi.hfa \
131 concurrency/stats.cfa \
132 concurrency/stats.hfa \
133 concurrency/stats.hfa
134
135else
136inst_headers_src =
137inst_thread_headers_src =
138inst_headers_nosrc =
139inst_thread_headers_nosrc =
140libsrc =
141endif
142
143
144#----------------------------------------------------------------------------------------------------------------
145# add dependency to cfa-cpp so all libraries are rebuilt with new translator
146#@CFACC@ @CFACPP@ prelude.cfa
147
148# add dependency of cfa files
149libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc))))
150$(libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
151
152thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc))))
153$(thread_libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
154
155
156# .deps inclusion is not done automatically by automake for new languages
157libdeps = $(join \
158 $(addsuffix $(DEPDIR)/ , $(dir $(libobjs) ) ), \
159 $(notdir ${libobjs:.lo=.Plo}) \
160)
161
162-include $(libdeps)
163
164thread_libdeps = $(join \
165 $(addsuffix $(DEPDIR)/ , $(dir $(thread_libobjs) ) ), \
166 $(notdir ${thread_libobjs:.lo=.Plo}) \
167)
168
169-include $(thread_libdeps)
170
171
172if ENABLE_DISTCC
173
174../prelude/distribution: @LOCAL_CFACC@ @LOCAL_CC1@ @CFACPP@ ../prelude/gcc-builtins.cf ../prelude/builtins.cf ../prelude/extras.cf ../prelude/prelude.cfa ../prelude/bootloader.c $(srcdir)/../../tools/build/push2dist.sh
175 @+make -C ../prelude distribution
176
177prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution
178
179endif ENABLE_DISTCC
180
181prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
182 ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA,-l ${<} -c -o ${@}
183
184prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
185 ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
186 $(CFACOMPILE) -quiet -XCFA,-l ${<} -c -o ${@}
187
188#----------------------------------------------------------------------------------------------------------------
189libcfa_la_SOURCES = ${libsrc}
190nodist_libcfa_la_SOURCES = prelude.cfa
191libcfa_la_LDFLAGS = -version-info @CFA_VERSION@
192
193libcfathread_la_SOURCES = ${thread_libsrc}
194libcfathread_la_LDFLAGS = -version-info @CFA_VERSION@
195
196stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
197
198cfa_includedir = $(CFA_INCDIR)
199nobase_cfa_include_HEADERS = ${stdhdr} ${inst_headers_src} ${inst_headers_nosrc} ${inst_thread_headers_src} ${inst_thread_headers_nosrc}
200EXTRA_DIST = stdhdr
201
202#----------------------------------------------------------------------------------------------------------------
203maintainer-clean-local:
204 -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
205
206distclean-local:
207 find ${builddir} -path '*.Plo' -delete
208
209
210# $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
211# $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
212# $(am__mv) $$depbase.Tpo $$depbase.Po
Note: See TracBrowser for help on using the repository browser.