source: libcfa/src/Makefile.am @ 80fbdc9

ADTast-experimental
Last change on this file since 80fbdc9 was 94e006a4, checked in by Thierry Delisle <tdelisle@…>, 21 months ago

Added missing distribution dependency on defines.hfa

  • Property mode set to 100644
File size: 6.7 KB
RevLine 
[00cc023]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##
[d63eeb0]8## Makefile.am --
[00cc023]9##
10## Author           : Peter A. Buhr
11## Created On       : Sun May 31 08:54:01 2015
[381fdee]12## Last Modified By : Peter A. Buhr
[08bc3e7]13## Last Modified On : Fri Jul 16 16:00:40 2021
14## Update Count     : 255
[00cc023]15###############################################################################
16
[a922e34]17# create object files in directory with source files
[38d12e7]18AUTOMAKE_OPTIONS = foreign subdir-objects
19ACLOCAL_AMFLAGS  = -I automake
[a922e34]20
[bcadb26]21include $(top_srcdir)/../tools/build/cfa.make
[ba9baad]22
[088a5cd]23libdir = ${CFA_LIBDIR}
[8ac3b0e]24lib_LTLIBRARIES = libcfa.la libcfathread.la
[3d50aaf]25
[a9fb796]26VPATH += :../prelude
27
[dee1f89]28gdbwaittarget=""
29
[ba9baad]30# AM_CFLAGS for all cfa source
31# AM_CFAFLAGS for only cfa source
32# use -no-include-stdhdr to prevent rebuild cycles
[b7fe2e6]33# The built sources must not depend on the installed inst_headers_src
[2fbc904]34AM_CFAFLAGS = -quiet -cfalib -I$(srcdir)/stdhdr -I$(srcdir)/concurrency $(if $(findstring ${gdbwaittarget}, ${@}), -XCFA --gdb) @CONFIG_CFAFLAGS@
[fa2a3b1]35AM_CFLAGS = -g -Wall -Werror=return-type -Wno-unused-function -fPIC -fexceptions -fvisibility=hidden -pthread @ARCH_FLAGS@ @CONFIG_CFLAGS@
[850aff1]36AM_CCASFLAGS = -g -Wall -Werror=return-type -Wno-unused-function @ARCH_FLAGS@ @CONFIG_CFLAGS@
[ba9baad]37CFACC = @CFACC@
[d3b7937]38
[73abe95]39#----------------------------------------------------------------------------------------------------------------
[e523b07]40if BUILDLIB
[b7fe2e6]41inst_headers_nosrc = \
42        bitmanip.hfa \
43        clock.hfa \
44        exception.hfa \
[d7a10af]45        exception.h \
[b7fe2e6]46        gmp.hfa \
[08bc3e7]47        math.trait.hfa \
[b7fe2e6]48        math.hfa \
49        time_t.hfa \
[3ad9097]50        bits/algorithm.hfa \
[b7fe2e6]51        bits/align.hfa \
52        bits/containers.hfa \
53        bits/debug.hfa \
54        bits/defs.hfa \
55        bits/locks.hfa \
[7d4ce2a]56        bits/collection.hfa \
57        bits/stack.hfa \
58        bits/queue.hfa \
59        bits/sequence.hfa \
[b7fe2e6]60        concurrency/iofwd.hfa \
[93b8cf4]61        concurrency/barrier.hfa \
62        containers/array.hfa \
[b7fe2e6]63        containers/list.hfa \
[304de00]64        containers/queueLockFree.hfa \
[eef8dfb]65        containers/stackLockFree.hfa \
[0f781fb8]66        containers/string_sharectx.hfa \
[44856ed]67        containers/vector2.hfa \
[eef8dfb]68        vec/vec.hfa \
69        vec/vec2.hfa \
70        vec/vec3.hfa \
71        vec/vec4.hfa
[b7fe2e6]72
73inst_headers_src = \
74        common.hfa \
75        fstream.hfa \
76        heap.hfa \
77        iostream.hfa \
78        iterator.hfa \
79        limits.hfa \
[4d9172f]80        memory.hfa \
[b7fe2e6]81        parseargs.hfa \
[16f9aca]82        parseconfig.hfa \
[b7fe2e6]83        rational.hfa \
84        stdlib.hfa \
[96f002c1]85        strstream.hfa \
[b7fe2e6]86        time.hfa \
[ab1b971]87        bits/weakso_locks.hfa \
[58b2638]88        algorithms/range_iterator.hfa \
[b7fe2e6]89        containers/maybe.hfa \
90        containers/pair.hfa \
91        containers/result.hfa \
[f450f2f]92        containers/string.hfa \
93        containers/string_res.hfa \
[96f002c1]94        containers/vector.hfa \
95        device/cpu.hfa
[b7fe2e6]96
97libsrc = ${inst_headers_src} ${inst_headers_src:.hfa=.cfa} \
98        assert.cfa \
99        bits/debug.cfa \
100        exception.c \
101        interpose.cfa \
102        lsda.h \
103        startup.cfa \
104        startup.hfa \
105        virtual.c \
106        virtual.h
[facc44f]107
108# not all platforms support concurrency, add option do disable it
[b7fe2e6]109inst_thread_headers_nosrc = \
110        bits/random.hfa \
[bb662027]111        concurrency/clib/cfathread.h \
[b7fe2e6]112        concurrency/invoke.h \
[70f8bcd2]113        concurrency/future.hfa \
[3ad9097]114        concurrency/kernel/fwd.hfa \
115        concurrency/mutex_stmt.hfa
[b7fe2e6]116
117inst_thread_headers_src = \
[ab388c5]118        concurrency/alarm.hfa \
[b7fe2e6]119        concurrency/coroutine.hfa \
[856dff8]120        concurrency/exception.hfa \
[b7fe2e6]121        concurrency/kernel.hfa \
[708ae38]122        concurrency/kernel/cluster.hfa \
[6a8882c]123        concurrency/locks.hfa \
[b7fe2e6]124        concurrency/monitor.hfa \
125        concurrency/mutex.hfa \
126        concurrency/thread.hfa
127
128thread_libsrc = ${inst_thread_headers_src} ${inst_thread_headers_src:.hfa=.cfa} \
129        bits/signal.hfa \
[bb662027]130        concurrency/clib/cfathread.cfa \
[b7fe2e6]131        concurrency/CtxSwitch-@ARCHITECTURE@.S \
132        concurrency/invoke.c \
133        concurrency/io.cfa \
134        concurrency/io/setup.cfa \
135        concurrency/io/types.hfa \
[c402739f]136        concurrency/io/call.cfa \
[b7fe2e6]137        concurrency/iofwd.hfa \
[708ae38]138        concurrency/kernel/private.hfa \
[b7fe2e6]139        concurrency/kernel/startup.cfa \
140        concurrency/preemption.cfa \
141        concurrency/preemption.hfa \
142        concurrency/ready_queue.cfa \
143        concurrency/ready_subqueue.hfa \
144        concurrency/snzi.hfa \
145        concurrency/stats.cfa \
146        concurrency/stats.hfa \
147        concurrency/stats.hfa
[3e2b9c9]148
[e523b07]149else
[b7fe2e6]150inst_headers_src =
151inst_thread_headers_src =
152inst_headers_nosrc =
153inst_thread_headers_nosrc =
[e523b07]154libsrc =
155endif
156
[ac78e25]157
[73abe95]158#----------------------------------------------------------------------------------------------------------------
159# add dependency to cfa-cpp so all libraries are rebuilt with new translator
[e523b07]160#@CFACC@ @CFACPP@ prelude.cfa
[a9fb796]161
162# add dependency of cfa files
[6d44da1]163libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc))))
[14347ac]164$(libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
[a9fb796]165
[2026bb6]166thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc))))
[14347ac]167$(thread_libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
[2026bb6]168
[a9fb796]169
170# .deps inclusion is not done automatically by automake for new languages
171libdeps = $(join \
172        $(addsuffix $(DEPDIR)/ , $(dir $(libobjs) ) ), \
[2a75572]173        $(notdir ${libobjs:.lo=.Plo}) \
[a9fb796]174)
[d3b7937]175
[0765121]176-include $(libdeps)
[a9fb796]177
[2026bb6]178thread_libdeps = $(join \
179        $(addsuffix $(DEPDIR)/ , $(dir $(thread_libobjs) ) ), \
180        $(notdir ${thread_libobjs:.lo=.Plo}) \
181)
182
183-include $(thread_libdeps)
184
185
[31d8f4d]186if ENABLE_DISTCC
187
[94e006a4]188../prelude/distribution: @LOCAL_CFACC@ @LOCAL_CC1@ @CFACPP@ ../prelude/defines.hfa ../prelude/gcc-builtins.cf ../prelude/builtins.cf ../prelude/extras.cf ../prelude/prelude.cfa ../prelude/bootloader.c $(srcdir)/../../tools/build/push2dist.sh
[31d8f4d]189        @+make -C ../prelude distribution
190
191prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution
192
193endif ENABLE_DISTCC
194
[14347ac]195prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
[fa2a3b1]196        ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
[d3b7937]197
[14347ac]198prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
[c6bbcdb]199        ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
[fa2a3b1]200        $(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
[a9fb796]201
[fdc3f9d]202concurrency/io/call.cfa: $(srcdir)/concurrency/io/call.cfa.in
203        ${AM_V_GEN}python3 $< > $@
204
[a9fb796]205#----------------------------------------------------------------------------------------------------------------
[c2bc6d5]206libcfa_la_SOURCES = ${libsrc}
207nodist_libcfa_la_SOURCES = prelude.cfa
[c6bbcdb]208libcfa_la_LDFLAGS = -version-info @CFA_VERSION@
[bd85400]209
[2026bb6]210libcfathread_la_SOURCES = ${thread_libsrc}
211libcfathread_la_LDFLAGS = -version-info @CFA_VERSION@
212
[38d12e7]213stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
[ed0e67a]214
[e958ff8]215cfa_includedir = $(CFA_INCDIR)
[b7fe2e6]216nobase_cfa_include_HEADERS = ${stdhdr} ${inst_headers_src} ${inst_headers_nosrc} ${inst_thread_headers_src} ${inst_thread_headers_nosrc}
217EXTRA_DIST = stdhdr
[5ce7f4a]218DISTCLEANFILES = $(libdeps) $(thread_libdeps)
[73abe95]219
220#----------------------------------------------------------------------------------------------------------------
[159c62e]221maintainer-clean-local:
[796cea3]222        -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
[a9fb796]223
[5ce7f4a]224#distclean-local:
225#       find ${builddir} -path '*.Plo' -delete
[2a59655]226
[a9fb796]227
228# $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
229#       $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
230#       $(am__mv) $$depbase.Tpo $$depbase.Po
Note: See TracBrowser for help on using the repository browser.