| [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
 | 
|---|
| [170235d] | 13 | ## Last Modified On : Mon Jun  1 13:35:33 2020
 | 
|---|
 | 14 | ## Update Count     : 248
 | 
|---|
| [00cc023] | 15 | ###############################################################################
 | 
|---|
 | 16 | 
 | 
|---|
| [a922e34] | 17 | # create object files in directory with source files
 | 
|---|
| [38d12e7] | 18 | AUTOMAKE_OPTIONS = foreign subdir-objects
 | 
|---|
| [2fbc904] | 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 \
 | 
|---|
 | 45 |         gmp.hfa \
 | 
|---|
 | 46 |         math.hfa \
 | 
|---|
 | 47 |         time_t.hfa \
 | 
|---|
 | 48 |         bits/align.hfa \
 | 
|---|
 | 49 |         bits/containers.hfa \
 | 
|---|
 | 50 |         bits/debug.hfa \
 | 
|---|
 | 51 |         bits/defs.hfa \
 | 
|---|
 | 52 |         bits/locks.hfa \
 | 
|---|
 | 53 |         concurrency/iofwd.hfa \
 | 
|---|
 | 54 |         containers/list.hfa \
 | 
|---|
 | 55 |         containers/stackLockFree.hfa
 | 
|---|
 | 56 | 
 | 
|---|
 | 57 | inst_headers_src = \
 | 
|---|
 | 58 |         common.hfa \
 | 
|---|
 | 59 |         fstream.hfa \
 | 
|---|
 | 60 |         heap.hfa \
 | 
|---|
 | 61 |         iostream.hfa \
 | 
|---|
 | 62 |         iterator.hfa \
 | 
|---|
 | 63 |         limits.hfa \
 | 
|---|
| [4d9172f] | 64 |         memory.hfa \
 | 
|---|
| [b7fe2e6] | 65 |         parseargs.hfa \
 | 
|---|
 | 66 |         rational.hfa \
 | 
|---|
 | 67 |         stdlib.hfa \
 | 
|---|
 | 68 |         time.hfa \
 | 
|---|
 | 69 |         containers/maybe.hfa \
 | 
|---|
 | 70 |         containers/pair.hfa \
 | 
|---|
 | 71 |         containers/result.hfa \
 | 
|---|
 | 72 |         containers/vector.hfa
 | 
|---|
 | 73 | 
 | 
|---|
 | 74 | libsrc = ${inst_headers_src} ${inst_headers_src:.hfa=.cfa} \
 | 
|---|
 | 75 |         assert.cfa \
 | 
|---|
 | 76 |         bits/algorithm.hfa \
 | 
|---|
 | 77 |         bits/debug.cfa \
 | 
|---|
 | 78 |         exception.c \
 | 
|---|
 | 79 |         exception.h \
 | 
|---|
 | 80 |         interpose.cfa \
 | 
|---|
 | 81 |         lsda.h \
 | 
|---|
 | 82 |         startup.cfa \
 | 
|---|
 | 83 |         startup.hfa \
 | 
|---|
 | 84 |         virtual.c \
 | 
|---|
 | 85 |         virtual.h
 | 
|---|
| [facc44f] | 86 | 
 | 
|---|
 | 87 | # not all platforms support concurrency, add option do disable it
 | 
|---|
| [b7fe2e6] | 88 | inst_thread_headers_nosrc = \
 | 
|---|
 | 89 |         bits/random.hfa \
 | 
|---|
| [bb662027] | 90 |         concurrency/clib/cfathread.h \
 | 
|---|
| [b7fe2e6] | 91 |         concurrency/invoke.h \
 | 
|---|
 | 92 |         concurrency/kernel/fwd.hfa
 | 
|---|
 | 93 | 
 | 
|---|
 | 94 | inst_thread_headers_src = \
 | 
|---|
 | 95 |         concurrency/coroutine.hfa \
 | 
|---|
| [856dff8] | 96 |         concurrency/exception.hfa \
 | 
|---|
| [b7fe2e6] | 97 |         concurrency/kernel.hfa \
 | 
|---|
| [6a8882c] | 98 |         concurrency/locks.hfa \
 | 
|---|
| [b7fe2e6] | 99 |         concurrency/monitor.hfa \
 | 
|---|
 | 100 |         concurrency/mutex.hfa \
 | 
|---|
 | 101 |         concurrency/thread.hfa
 | 
|---|
 | 102 | 
 | 
|---|
 | 103 | thread_libsrc = ${inst_thread_headers_src} ${inst_thread_headers_src:.hfa=.cfa} \
 | 
|---|
 | 104 |         bits/signal.hfa \
 | 
|---|
 | 105 |         concurrency/alarm.cfa \
 | 
|---|
 | 106 |         concurrency/alarm.hfa \
 | 
|---|
| [bb662027] | 107 |         concurrency/clib/cfathread.cfa \
 | 
|---|
| [b7fe2e6] | 108 |         concurrency/CtxSwitch-@ARCHITECTURE@.S \
 | 
|---|
 | 109 |         concurrency/invoke.c \
 | 
|---|
 | 110 |         concurrency/io.cfa \
 | 
|---|
 | 111 |         concurrency/io/setup.cfa \
 | 
|---|
 | 112 |         concurrency/io/types.hfa \
 | 
|---|
| [c402739f] | 113 |         concurrency/io/call.cfa \
 | 
|---|
| [b7fe2e6] | 114 |         concurrency/iofwd.hfa \
 | 
|---|
 | 115 |         concurrency/kernel_private.hfa \
 | 
|---|
 | 116 |         concurrency/kernel/startup.cfa \
 | 
|---|
 | 117 |         concurrency/preemption.cfa \
 | 
|---|
 | 118 |         concurrency/preemption.hfa \
 | 
|---|
 | 119 |         concurrency/ready_queue.cfa \
 | 
|---|
 | 120 |         concurrency/ready_subqueue.hfa \
 | 
|---|
 | 121 |         concurrency/snzi.hfa \
 | 
|---|
 | 122 |         concurrency/stats.cfa \
 | 
|---|
 | 123 |         concurrency/stats.hfa \
 | 
|---|
 | 124 |         concurrency/stats.hfa
 | 
|---|
| [3e2b9c9] | 125 | 
 | 
|---|
| [e523b07] | 126 | else
 | 
|---|
| [b7fe2e6] | 127 | inst_headers_src =
 | 
|---|
 | 128 | inst_thread_headers_src =
 | 
|---|
 | 129 | inst_headers_nosrc =
 | 
|---|
 | 130 | inst_thread_headers_nosrc =
 | 
|---|
| [e523b07] | 131 | libsrc =
 | 
|---|
 | 132 | endif
 | 
|---|
 | 133 | 
 | 
|---|
| [ac78e25] | 134 | 
 | 
|---|
| [73abe95] | 135 | #----------------------------------------------------------------------------------------------------------------
 | 
|---|
 | 136 | # add dependency to cfa-cpp so all libraries are rebuilt with new translator
 | 
|---|
| [e523b07] | 137 | #@CFACC@ @CFACPP@ prelude.cfa
 | 
|---|
| [a9fb796] | 138 | 
 | 
|---|
 | 139 | # add dependency of cfa files
 | 
|---|
| [6d44da1] | 140 | libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc))))
 | 
|---|
| [14347ac] | 141 | $(libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
 | 
|---|
| [a9fb796] | 142 | 
 | 
|---|
| [2026bb6] | 143 | thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc))))
 | 
|---|
| [14347ac] | 144 | $(thread_libobjs) : @LOCAL_CFACC@ @CFACPP@ prelude.cfa
 | 
|---|
| [2026bb6] | 145 | 
 | 
|---|
| [a9fb796] | 146 | 
 | 
|---|
 | 147 | # .deps inclusion is not done automatically by automake for new languages
 | 
|---|
 | 148 | libdeps = $(join \
 | 
|---|
 | 149 |         $(addsuffix $(DEPDIR)/ , $(dir $(libobjs) ) ), \
 | 
|---|
| [2a75572] | 150 |         $(notdir ${libobjs:.lo=.Plo}) \
 | 
|---|
| [a9fb796] | 151 | )
 | 
|---|
| [d3b7937] | 152 | 
 | 
|---|
| [0765121] | 153 | -include $(libdeps)
 | 
|---|
| [a9fb796] | 154 | 
 | 
|---|
| [2026bb6] | 155 | thread_libdeps = $(join \
 | 
|---|
 | 156 |         $(addsuffix $(DEPDIR)/ , $(dir $(thread_libobjs) ) ), \
 | 
|---|
 | 157 |         $(notdir ${thread_libobjs:.lo=.Plo}) \
 | 
|---|
 | 158 | )
 | 
|---|
 | 159 | 
 | 
|---|
 | 160 | -include $(thread_libdeps)
 | 
|---|
 | 161 | 
 | 
|---|
 | 162 | 
 | 
|---|
| [31d8f4d] | 163 | if ENABLE_DISTCC
 | 
|---|
 | 164 | 
 | 
|---|
 | 165 | ../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
 | 
|---|
 | 166 |         @+make -C ../prelude distribution
 | 
|---|
 | 167 | 
 | 
|---|
 | 168 | prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution
 | 
|---|
 | 169 | 
 | 
|---|
 | 170 | endif ENABLE_DISTCC
 | 
|---|
 | 171 | 
 | 
|---|
| [14347ac] | 172 | prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
 | 
|---|
| [0aa20e3] | 173 |         ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA,-l ${<} -c -o ${@}
 | 
|---|
| [d3b7937] | 174 | 
 | 
|---|
| [14347ac] | 175 | prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@
 | 
|---|
| [c6bbcdb] | 176 |         ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
 | 
|---|
| [0aa20e3] | 177 |         $(CFACOMPILE) -quiet -XCFA,-l ${<} -c -o ${@}
 | 
|---|
| [a9fb796] | 178 | 
 | 
|---|
 | 179 | #----------------------------------------------------------------------------------------------------------------
 | 
|---|
| [c2bc6d5] | 180 | libcfa_la_SOURCES = ${libsrc}
 | 
|---|
 | 181 | nodist_libcfa_la_SOURCES = prelude.cfa
 | 
|---|
| [c6bbcdb] | 182 | libcfa_la_LDFLAGS = -version-info @CFA_VERSION@
 | 
|---|
| [bd85400] | 183 | 
 | 
|---|
| [2026bb6] | 184 | libcfathread_la_SOURCES = ${thread_libsrc}
 | 
|---|
 | 185 | libcfathread_la_LDFLAGS = -version-info @CFA_VERSION@
 | 
|---|
 | 186 | 
 | 
|---|
| [38d12e7] | 187 | stdhdr = $(shell find $(srcdir)/stdhdr -type f -printf "%p ")
 | 
|---|
| [ed0e67a] | 188 | 
 | 
|---|
| [e958ff8] | 189 | cfa_includedir = $(CFA_INCDIR)
 | 
|---|
| [b7fe2e6] | 190 | nobase_cfa_include_HEADERS = ${stdhdr} ${inst_headers_src} ${inst_headers_nosrc} ${inst_thread_headers_src} ${inst_thread_headers_nosrc}
 | 
|---|
 | 191 | EXTRA_DIST = stdhdr
 | 
|---|
| [73abe95] | 192 | 
 | 
|---|
 | 193 | #----------------------------------------------------------------------------------------------------------------
 | 
|---|
| [159c62e] | 194 | maintainer-clean-local:
 | 
|---|
| [796cea3] | 195 |         -rm -rf ${CFA_INCDIR} ${CFA_LIBDIR}
 | 
|---|
| [a9fb796] | 196 | 
 | 
|---|
 | 197 | 
 | 
|---|
 | 198 | # $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
 | 
|---|
 | 199 | #       $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
 | 
|---|
 | 200 | #       $(am__mv) $$depbase.Tpo $$depbase.Po
 | 
|---|