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