[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] | 18 | AUTOMAKE_OPTIONS = foreign subdir-objects
|
---|
| 19 | ACLOCAL_AMFLAGS = -I automake
|
---|
[a922e34] | 20 |
|
---|
[bcadb26] | 21 | include $(top_srcdir)/../tools/build/cfa.make
|
---|
[ba9baad] | 22 |
|
---|
[088a5cd] | 23 | libdir = ${CFA_LIBDIR}
|
---|
[8ac3b0e] | 24 | lib_LTLIBRARIES = libcfa.la libcfathread.la
|
---|
[3d50aaf] | 25 |
|
---|
[a9fb796] | 26 | VPATH += :../prelude
|
---|
| 27 |
|
---|
[dee1f89] | 28 | gdbwaittarget=""
|
---|
| 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] | 34 | AM_CFAFLAGS = -quiet -cfalib -I$(srcdir)/stdhdr -I$(srcdir)/concurrency $(if $(findstring ${gdbwaittarget}, ${@}), -XCFA --gdb) @CONFIG_CFAFLAGS@
|
---|
[fa2a3b1] | 35 | AM_CFLAGS = -g -Wall -Werror=return-type -Wno-unused-function -fPIC -fexceptions -fvisibility=hidden -pthread @ARCH_FLAGS@ @CONFIG_CFLAGS@
|
---|
[850aff1] | 36 | AM_CCASFLAGS = -g -Wall -Werror=return-type -Wno-unused-function @ARCH_FLAGS@ @CONFIG_CFLAGS@
|
---|
[ba9baad] | 37 | CFACC = @CFACC@
|
---|
[d3b7937] | 38 |
|
---|
[73abe95] | 39 | #----------------------------------------------------------------------------------------------------------------
|
---|
[e523b07] | 40 | if BUILDLIB
|
---|
[b7fe2e6] | 41 | inst_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 \
|
---|
[88ac843e] | 64 | containers/lockfree.hfa \
|
---|
[0f781fb8] | 65 | containers/string_sharectx.hfa \
|
---|
[44856ed] | 66 | containers/vector2.hfa \
|
---|
[eef8dfb] | 67 | vec/vec.hfa \
|
---|
| 68 | vec/vec2.hfa \
|
---|
| 69 | vec/vec3.hfa \
|
---|
| 70 | vec/vec4.hfa
|
---|
[b7fe2e6] | 71 |
|
---|
| 72 | inst_headers_src = \
|
---|
| 73 | common.hfa \
|
---|
| 74 | fstream.hfa \
|
---|
| 75 | heap.hfa \
|
---|
| 76 | iostream.hfa \
|
---|
| 77 | iterator.hfa \
|
---|
| 78 | limits.hfa \
|
---|
[4d9172f] | 79 | memory.hfa \
|
---|
[b7fe2e6] | 80 | parseargs.hfa \
|
---|
[16f9aca] | 81 | parseconfig.hfa \
|
---|
[b7fe2e6] | 82 | rational.hfa \
|
---|
| 83 | stdlib.hfa \
|
---|
[96f002c1] | 84 | strstream.hfa \
|
---|
[b7fe2e6] | 85 | time.hfa \
|
---|
[ab1b971] | 86 | bits/weakso_locks.hfa \
|
---|
[58b2638] | 87 | algorithms/range_iterator.hfa \
|
---|
[b7fe2e6] | 88 | containers/maybe.hfa \
|
---|
| 89 | containers/pair.hfa \
|
---|
| 90 | containers/result.hfa \
|
---|
[f450f2f] | 91 | containers/string.hfa \
|
---|
| 92 | containers/string_res.hfa \
|
---|
[96f002c1] | 93 | containers/vector.hfa \
|
---|
| 94 | device/cpu.hfa
|
---|
[b7fe2e6] | 95 |
|
---|
| 96 | libsrc = ${inst_headers_src} ${inst_headers_src:.hfa=.cfa} \
|
---|
| 97 | assert.cfa \
|
---|
| 98 | bits/debug.cfa \
|
---|
| 99 | exception.c \
|
---|
| 100 | interpose.cfa \
|
---|
| 101 | lsda.h \
|
---|
| 102 | startup.cfa \
|
---|
| 103 | startup.hfa \
|
---|
| 104 | virtual.c \
|
---|
| 105 | virtual.h
|
---|
[facc44f] | 106 |
|
---|
| 107 | # not all platforms support concurrency, add option do disable it
|
---|
[b7fe2e6] | 108 | inst_thread_headers_nosrc = \
|
---|
| 109 | bits/random.hfa \
|
---|
[bb662027] | 110 | concurrency/clib/cfathread.h \
|
---|
[b7fe2e6] | 111 | concurrency/invoke.h \
|
---|
[70f8bcd2] | 112 | concurrency/future.hfa \
|
---|
[3ad9097] | 113 | concurrency/kernel/fwd.hfa \
|
---|
| 114 | concurrency/mutex_stmt.hfa
|
---|
[b7fe2e6] | 115 |
|
---|
| 116 | inst_thread_headers_src = \
|
---|
[ab388c5] | 117 | concurrency/alarm.hfa \
|
---|
[b7fe2e6] | 118 | concurrency/coroutine.hfa \
|
---|
[856dff8] | 119 | concurrency/exception.hfa \
|
---|
[b7fe2e6] | 120 | concurrency/kernel.hfa \
|
---|
[708ae38] | 121 | concurrency/kernel/cluster.hfa \
|
---|
[6a8882c] | 122 | concurrency/locks.hfa \
|
---|
[b7fe2e6] | 123 | concurrency/monitor.hfa \
|
---|
| 124 | concurrency/mutex.hfa \
|
---|
[95dab9e] | 125 | concurrency/thread.hfa
|
---|
[b7fe2e6] | 126 |
|
---|
| 127 | thread_libsrc = ${inst_thread_headers_src} ${inst_thread_headers_src:.hfa=.cfa} \
|
---|
[95dab9e] | 128 | interpose_thread.cfa \
|
---|
[b7fe2e6] | 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 \
|
---|
[a7d696f] | 147 | concurrency/stats.hfa \
|
---|
| 148 | concurrency/pthread.cfa
|
---|
[3e2b9c9] | 149 |
|
---|
[e523b07] | 150 | else
|
---|
[b7fe2e6] | 151 | inst_headers_src =
|
---|
| 152 | inst_thread_headers_src =
|
---|
| 153 | inst_headers_nosrc =
|
---|
| 154 | inst_thread_headers_nosrc =
|
---|
[e523b07] | 155 | libsrc =
|
---|
| 156 | endif
|
---|
| 157 |
|
---|
[ac78e25] | 158 |
|
---|
[73abe95] | 159 | #----------------------------------------------------------------------------------------------------------------
|
---|
| 160 | # add dependency to cfa-cpp so all libraries are rebuilt with new translator
|
---|
[e523b07] | 161 | #@CFACC@ @CFACPP@ prelude.cfa
|
---|
[a9fb796] | 162 |
|
---|
| 163 | # add dependency of cfa files
|
---|
[6d44da1] | 164 | libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc))))
|
---|
[14347ac] | 165 | $(libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
|
---|
[a9fb796] | 166 |
|
---|
[2026bb6] | 167 | thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc))))
|
---|
[14347ac] | 168 | $(thread_libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
|
---|
[2026bb6] | 169 |
|
---|
[a9fb796] | 170 |
|
---|
| 171 | # .deps inclusion is not done automatically by automake for new languages
|
---|
| 172 | libdeps = $(join \
|
---|
| 173 | $(addsuffix $(DEPDIR)/ , $(dir $(libobjs) ) ), \
|
---|
[2a75572] | 174 | $(notdir ${libobjs:.lo=.Plo}) \
|
---|
[a9fb796] | 175 | )
|
---|
[d3b7937] | 176 |
|
---|
[0765121] | 177 | -include $(libdeps)
|
---|
[a9fb796] | 178 |
|
---|
[2026bb6] | 179 | thread_libdeps = $(join \
|
---|
| 180 | $(addsuffix $(DEPDIR)/ , $(dir $(thread_libobjs) ) ), \
|
---|
| 181 | $(notdir ${thread_libobjs:.lo=.Plo}) \
|
---|
| 182 | )
|
---|
| 183 |
|
---|
| 184 | -include $(thread_libdeps)
|
---|
| 185 |
|
---|
| 186 |
|
---|
[31d8f4d] | 187 | if ENABLE_DISTCC
|
---|
| 188 |
|
---|
[94e006a4] | 189 | ../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] | 190 | @+make -C ../prelude distribution
|
---|
| 191 |
|
---|
| 192 | prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution
|
---|
| 193 |
|
---|
| 194 | endif ENABLE_DISTCC
|
---|
| 195 |
|
---|
[14347ac] | 196 | prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
|
---|
[fa2a3b1] | 197 | ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
|
---|
[d3b7937] | 198 |
|
---|
[14347ac] | 199 | prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
|
---|
[c6bbcdb] | 200 | ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
|
---|
[fa2a3b1] | 201 | $(CFACOMPILE) -quiet -XCFA,-l ${<} -c -fvisibility=default -o ${@}
|
---|
[a9fb796] | 202 |
|
---|
[fdc3f9d] | 203 | concurrency/io/call.cfa: $(srcdir)/concurrency/io/call.cfa.in
|
---|
| 204 | ${AM_V_GEN}python3 $< > $@
|
---|
| 205 |
|
---|
[a9fb796] | 206 | #----------------------------------------------------------------------------------------------------------------
|
---|
[c2bc6d5] | 207 | libcfa_la_SOURCES = ${libsrc}
|
---|
| 208 | nodist_libcfa_la_SOURCES = prelude.cfa
|
---|
[c6bbcdb] | 209 | libcfa_la_LDFLAGS = -version-info @CFA_VERSION@
|
---|
[bd85400] | 210 |
|
---|
[2026bb6] | 211 | libcfathread_la_SOURCES = ${thread_libsrc}
|
---|
| 212 | libcfathread_la_LDFLAGS = -version-info @CFA_VERSION@
|
---|
| 213 |
|
---|
[38d12e7] | 214 | stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
|
---|
[ed0e67a] | 215 |
|
---|
[e958ff8] | 216 | cfa_includedir = $(CFA_INCDIR)
|
---|
[b7fe2e6] | 217 | nobase_cfa_include_HEADERS = ${stdhdr} ${inst_headers_src} ${inst_headers_nosrc} ${inst_thread_headers_src} ${inst_thread_headers_nosrc}
|
---|
| 218 | EXTRA_DIST = stdhdr
|
---|
[5ce7f4a] | 219 | DISTCLEANFILES = $(libdeps) $(thread_libdeps)
|
---|
[73abe95] | 220 |
|
---|
| 221 | #----------------------------------------------------------------------------------------------------------------
|
---|
[159c62e] | 222 | maintainer-clean-local:
|
---|
[796cea3] | 223 | -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
|
---|
[a9fb796] | 224 |
|
---|
[5ce7f4a] | 225 | #distclean-local:
|
---|
| 226 | # find ${builddir} -path '*.Plo' -delete
|
---|
[2a59655] | 227 |
|
---|
[a9fb796] | 228 |
|
---|
| 229 | # $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
---|
| 230 | # $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
---|
| 231 | # $(am__mv) $$depbase.Tpo $$depbase.Po
|
---|