source: libcfa/src/Makefile.am @ 170235d

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

reposition include files in libcfa/src/Makefile.am to get them copied to "include" directory

  • Property mode set to 100644
File size: 4.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 $(srcdir)/../../src/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 headers
34AM_CFAFLAGS = -quiet -cfalib -I$(srcdir)/stdhdr $(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
41headers_nosrc = bitmanip.hfa exception.hfa math.hfa gmp.hfa time_t.hfa clock.hfa \
42                bits/align.hfa bits/containers.hfa bits/defs.hfa bits/debug.hfa bits/locks.hfa containers/list.hfa containers/stackLockFree.hfa
43headers = common.hfa fstream.hfa heap.hfa iostream.hfa iterator.hfa limits.hfa rational.hfa time.hfa stdlib.hfa \
44                containers/maybe.hfa containers/pair.hfa containers/result.hfa containers/vector.hfa
45
46libsrc = startup.cfa interpose.cfa bits/debug.cfa assert.cfa exception.c virtual.c ${headers:.hfa=.cfa}
47
48# not all platforms support concurrency, add option do disable it
49thread_headers_nosrc = concurrency/invoke.h
50thread_headers = concurrency/coroutine.hfa concurrency/thread.hfa concurrency/kernel.hfa concurrency/monitor.hfa concurrency/mutex.hfa
51thread_libsrc = concurrency/CtxSwitch-@ARCHITECTURE@.S concurrency/alarm.cfa concurrency/invoke.c concurrency/io.cfa concurrency/preemption.cfa ${thread_headers:.hfa=.cfa}
52else
53headers =
54thread_headers =
55headers_nosrc =
56thread_headers_nosrc =
57libsrc =
58endif
59
60
61#----------------------------------------------------------------------------------------------------------------
62# add dependency to cfa-cpp so all libraries are rebuilt with new translator
63#@CFACC@ @CFACPP@ prelude.cfa
64
65# add dependency of cfa files
66libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc))))
67$(libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
68
69thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc))))
70$(thread_libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
71
72
73# .deps inclusion is not done automatically by automake for new languages
74libdeps = $(join \
75        $(addsuffix $(DEPDIR)/ , $(dir $(libobjs) ) ), \
76        $(notdir ${libobjs:.lo=.Plo}) \
77)
78
79-include $(libdeps)
80
81thread_libdeps = $(join \
82        $(addsuffix $(DEPDIR)/ , $(dir $(thread_libobjs) ) ), \
83        $(notdir ${thread_libobjs:.lo=.Plo}) \
84)
85
86-include $(thread_libdeps)
87
88
89if ENABLE_DISTCC
90
91../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
92        @+make -C ../prelude distribution
93
94prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution
95
96endif ENABLE_DISTCC
97
98prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
99        ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA -l ${<} -c -o ${@}
100
101prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
102        ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
103        $(CFACOMPILE) -quiet -XCFA -l ${<} -c -o ${@}
104
105#----------------------------------------------------------------------------------------------------------------
106libcfa_la_SOURCES = prelude.cfa ${libsrc}
107libcfa_la_LDFLAGS = -version-info @CFA_VERSION@
108
109libcfathread_la_SOURCES = ${thread_libsrc}
110libcfathread_la_LDFLAGS = -version-info @CFA_VERSION@
111
112stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
113
114cfa_includedir = $(CFA_INCDIR)
115nobase_cfa_include_HEADERS = ${stdhdr} ${headers} ${headers_nosrc} ${thread_headers} ${thread_headers_nosrc}
116
117#----------------------------------------------------------------------------------------------------------------
118maintainer-clean-local:
119        -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
120
121
122# $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
123#       $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
124#       $(am__mv) $$depbase.Tpo $$depbase.Po
Note: See TracBrowser for help on using the repository browser.