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