source: libcfa/src/Makefile.am@ f93d7fc

ADT ast-experimental enum forall-pointer-decay jacob/cs343-translation pthread-emulation qualifiedEnum
Last change on this file since f93d7fc was 5b7c8b5, checked in by caparsons <caparson@…>, 4 years ago

small changes and hopefully fixed build

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