source: libcfa/src/Makefile.am@ c1dafea

ADT ast-experimental enum forall-pointer-decay jacob/cs343-translation pthread-emulation qualifiedEnum
Last change on this file since c1dafea was 16f9aca, checked in by Jacob Prud'homme <jafprudhomme@…>, 4 years ago

Created new library with code directly from CS 343 A6

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