Changeset c6bbcdb for libcfa/src/Makefile.am
- Timestamp:
- Sep 25, 2018, 4:43:25 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 2725882
- Parents:
- 6d44da1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/Makefile.am
r6d44da1 rc6bbcdb 38 38 #---------------------------------------------------------------------------------------------------------------- 39 39 if BUILDLIB 40 headers_nosrc = math.hfa gmp.hfa time_t.hfa bits/align.hfa bits/containers.hfa bits/defs.hfa bits/debug.hfa bits/locks.hfa 40 41 headers = fstream.hfa iostream.hfa iterator.hfa limits.hfa rational.hfa time.hfa stdlib.hfa common.hfa \ 41 42 containers/maybe.hfa containers/pair.hfa containers/result.hfa containers/vector.hfa 42 43 43 headers_nosrc = math.hfa gmp.hfa time_t.hfa bits/align.hfa bits/containers.hfa bits/defs.hfa bits/debug.hfa bits/locks.hfa44 45 44 # not all platforms support concurrency, add option do disable it 45 headers_nosrc += concurrency/invoke.h 46 46 headers += concurrency/coroutine.hfa concurrency/thread.hfa concurrency/kernel.hfa concurrency/monitor.hfa concurrency/mutex.hfa 47 47 48 headers_nosrc += concurrency/invoke.h49 50 libobjs = ${headers:.hfa=.lo}51 48 libsrc = startup.cfa interpose.cfa bits/debug.cfa assert.cfa exception.c virtual.c heap.cfa ${headers:.hfa=.cfa} 52 49 … … 77 74 -include $(libdeps) 78 75 79 prelude. lo : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @CFACC@ @CFACPP@76 prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @CFACC@ @CFACPP@ 80 77 ${AM_V_GEN}@CFACC@ ${AM_CFLAGS} ${CFLAGS} -quiet -in-tree -XCFA -l ${<} -c -o ${@} 81 78 79 prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @CFACC@ @CFACPP@ 80 ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \ 81 @CFACC@ ${AM_CFLAGS} ${CFLAGS} -quiet -in-tree -XCFA -l ${<} -c -o ${@} 82 82 83 83 84 84 #---------------------------------------------------------------------------------------------------------------- 85 85 libcfa_la_SOURCES = prelude.cfa ${libsrc} 86 libcfa_la_LDFLAGS = -version-info @CFA_VERSION@ 86 87 87 88 stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
Note: See TracChangeset
for help on using the changeset viewer.