source: libcfa/src/Makefile.am@ ec43cf9

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 ec43cf9 was c7625e0, checked in by Michael Brooks <mlbrooks@…>, 4 years ago

Adding manged-length arrays

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