source: libcfa/src/Makefile.am@ 2a658e9

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 2a658e9 was 2724b4e, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

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