source: libcfa/src/Makefile.am @ 7d4ce2a

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 7d4ce2a was 7d4ce2a, checked in by Peter A. Buhr <pabuhr@…>, 3 years ago

make collections publicly accessible in include directory

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