source: libcfa/src/Makefile.am @ 9e27f69

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 9e27f69 was ab1b971, checked in by Thierry Delisle <tdelisle@…>, 3 years ago

blocking_lock & multiple_acquisition_lock can now be used without libcfa-thread.
Doing so will have all functions be no-ops for these locks.
If libcfa-thread is linked in, these locks will behave as proper user-level locking.

  • Property mode set to 100644
File size: 6.1 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
[7d4ce2a]13## Last Modified On : Wed Dec  9 22:46:14 2020
14## Update Count     : 250
[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@
[f1b6671]35AM_CFLAGS = -g -Wall -Wno-unused-function -fPIC -fexceptions -pthread @ARCH_FLAGS@ @CONFIG_CFLAGS@
[575a6e5]36AM_CCASFLAGS = -g -Wall -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 \
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 \
[7d4ce2a]54        bits/collection.hfa \
55        bits/stack.hfa \
56        bits/queue.hfa \
57        bits/sequence.hfa \
[b7fe2e6]58        concurrency/iofwd.hfa \
59        containers/list.hfa \
[eef8dfb]60        containers/stackLockFree.hfa \
61        vec/vec.hfa \
62        vec/vec2.hfa \
63        vec/vec3.hfa \
64        vec/vec4.hfa
[b7fe2e6]65
66inst_headers_src = \
67        common.hfa \
68        fstream.hfa \
69        heap.hfa \
70        iostream.hfa \
71        iterator.hfa \
72        limits.hfa \
[4d9172f]73        memory.hfa \
[b7fe2e6]74        parseargs.hfa \
75        rational.hfa \
76        stdlib.hfa \
77        time.hfa \
[ab1b971]78        bits/weakso_locks.hfa \
[b7fe2e6]79        containers/maybe.hfa \
80        containers/pair.hfa \
81        containers/result.hfa \
82        containers/vector.hfa
83
84libsrc = ${inst_headers_src} ${inst_headers_src:.hfa=.cfa} \
85        assert.cfa \
86        bits/algorithm.hfa \
87        bits/debug.cfa \
88        exception.c \
89        interpose.cfa \
90        lsda.h \
91        startup.cfa \
92        startup.hfa \
93        virtual.c \
94        virtual.h
[facc44f]95
96# not all platforms support concurrency, add option do disable it
[b7fe2e6]97inst_thread_headers_nosrc = \
98        bits/random.hfa \
[bb662027]99        concurrency/clib/cfathread.h \
[b7fe2e6]100        concurrency/invoke.h \
[70f8bcd2]101        concurrency/future.hfa \
[b7fe2e6]102        concurrency/kernel/fwd.hfa
103
104inst_thread_headers_src = \
105        concurrency/coroutine.hfa \
[856dff8]106        concurrency/exception.hfa \
[b7fe2e6]107        concurrency/kernel.hfa \
[6a8882c]108        concurrency/locks.hfa \
[b7fe2e6]109        concurrency/monitor.hfa \
110        concurrency/mutex.hfa \
111        concurrency/thread.hfa
112
113thread_libsrc = ${inst_thread_headers_src} ${inst_thread_headers_src:.hfa=.cfa} \
114        bits/signal.hfa \
115        concurrency/alarm.cfa \
116        concurrency/alarm.hfa \
[bb662027]117        concurrency/clib/cfathread.cfa \
[b7fe2e6]118        concurrency/CtxSwitch-@ARCHITECTURE@.S \
119        concurrency/invoke.c \
120        concurrency/io.cfa \
121        concurrency/io/setup.cfa \
122        concurrency/io/types.hfa \
[c402739f]123        concurrency/io/call.cfa \
[b7fe2e6]124        concurrency/iofwd.hfa \
125        concurrency/kernel_private.hfa \
126        concurrency/kernel/startup.cfa \
127        concurrency/preemption.cfa \
128        concurrency/preemption.hfa \
129        concurrency/ready_queue.cfa \
130        concurrency/ready_subqueue.hfa \
131        concurrency/snzi.hfa \
132        concurrency/stats.cfa \
133        concurrency/stats.hfa \
134        concurrency/stats.hfa
[3e2b9c9]135
[e523b07]136else
[b7fe2e6]137inst_headers_src =
138inst_thread_headers_src =
139inst_headers_nosrc =
140inst_thread_headers_nosrc =
[e523b07]141libsrc =
142endif
143
[ac78e25]144
[73abe95]145#----------------------------------------------------------------------------------------------------------------
146# add dependency to cfa-cpp so all libraries are rebuilt with new translator
[e523b07]147#@CFACC@ @CFACPP@ prelude.cfa
[a9fb796]148
149# add dependency of cfa files
[6d44da1]150libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc))))
[14347ac]151$(libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
[a9fb796]152
[2026bb6]153thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc))))
[14347ac]154$(thread_libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
[2026bb6]155
[a9fb796]156
157# .deps inclusion is not done automatically by automake for new languages
158libdeps = $(join \
159        $(addsuffix $(DEPDIR)/ , $(dir $(libobjs) ) ), \
[2a75572]160        $(notdir ${libobjs:.lo=.Plo}) \
[a9fb796]161)
[d3b7937]162
[0765121]163-include $(libdeps)
[a9fb796]164
[2026bb6]165thread_libdeps = $(join \
166        $(addsuffix $(DEPDIR)/ , $(dir $(thread_libobjs) ) ), \
167        $(notdir ${thread_libobjs:.lo=.Plo}) \
168)
169
170-include $(thread_libdeps)
171
172
[31d8f4d]173if ENABLE_DISTCC
174
175../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
176        @+make -C ../prelude distribution
177
178prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution
179
180endif ENABLE_DISTCC
181
[14347ac]182prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
[0aa20e3]183        ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA,-l ${<} -c -o ${@}
[d3b7937]184
[14347ac]185prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
[c6bbcdb]186        ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
[0aa20e3]187        $(CFACOMPILE) -quiet -XCFA,-l ${<} -c -o ${@}
[a9fb796]188
189#----------------------------------------------------------------------------------------------------------------
[c2bc6d5]190libcfa_la_SOURCES = ${libsrc}
191nodist_libcfa_la_SOURCES = prelude.cfa
[c6bbcdb]192libcfa_la_LDFLAGS = -version-info @CFA_VERSION@
[bd85400]193
[2026bb6]194libcfathread_la_SOURCES = ${thread_libsrc}
195libcfathread_la_LDFLAGS = -version-info @CFA_VERSION@
196
[38d12e7]197stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
[ed0e67a]198
[e958ff8]199cfa_includedir = $(CFA_INCDIR)
[b7fe2e6]200nobase_cfa_include_HEADERS = ${stdhdr} ${inst_headers_src} ${inst_headers_nosrc} ${inst_thread_headers_src} ${inst_thread_headers_nosrc}
201EXTRA_DIST = stdhdr
[73abe95]202
203#----------------------------------------------------------------------------------------------------------------
[159c62e]204maintainer-clean-local:
[796cea3]205        -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
[a9fb796]206
[2a59655]207distclean-local:
208        find ${builddir} -path '*.Plo' -delete
209
[a9fb796]210
211# $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
212#       $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
213#       $(am__mv) $$depbase.Tpo $$depbase.Po
Note: See TracBrowser for help on using the repository browser.