source: libcfa/src/Makefile.am @ a344425

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

Added queueLockFree which contains two lockfree queue based on MCS.

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