source: libcfa/src/Makefile.am@ 5241ec2

ADT ast-experimental enum forall-pointer-decay jacob/cs343-translation pthread-emulation qualifiedEnum
Last change on this file since 5241ec2 was 16f9aca, checked in by Jacob Prud'homme <jafprudhomme@…>, 4 years ago

Created new library with code directly from CS 343 A6

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