[ef7d253] | 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 | ##
|
---|
| 8 | ## Makefile.am --
|
---|
| 9 | ##
|
---|
| 10 | ## Author : Peter A. Buhr
|
---|
| 11 | ## Created On : Sun May 31 09:08:15 2015
|
---|
| 12 | ## Last Modified By : Peter A. Buhr
|
---|
[53692b3] | 13 | ## Last Modified On : Sat Jun 5 14:49:25 2021
|
---|
| 14 | ## Update Count : 92
|
---|
[ef7d253] | 15 | ###############################################################################
|
---|
| 16 |
|
---|
[0c1b566] | 17 | AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names
|
---|
[107b01a] | 18 | ACLOCAL_AMFLAGS = -I automake
|
---|
[f85bc15] | 19 |
|
---|
[bcadb26] | 20 | include $(top_srcdir)/tools/build/cfa.make
|
---|
[dc8511c] | 21 |
|
---|
[74cfe054] | 22 | DEFAULT_INCLUDES = -I${abs_srcdir}
|
---|
| 23 |
|
---|
[cc640aad] | 24 | debug=yes
|
---|
[ff593a3] | 25 | installed=no
|
---|
[dcfedca] | 26 | archiveerrors=
|
---|
[cc640aad] | 27 |
|
---|
[36fbaeca] | 28 | DEBUG_FLAGS=-debug -g -O0
|
---|
[e3a5a73] | 29 |
|
---|
[ff7b2de] | 30 | quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable
|
---|
[be65cca] | 31 |
|
---|
[0ad0c55] | 32 | concurrent=
|
---|
[b90aace] | 33 | timeouts=
|
---|
[be65cca] | 34 |
|
---|
[5b993e0] | 35 | TEST_PY = python3 ${builddir}/test.py
|
---|
[f85bc15] | 36 |
|
---|
[ef7d253] | 37 | # applies to both programs
|
---|
[d65f92c] | 38 | # since automake doesn't have support for CFA we have to
|
---|
[b8f6002] | 39 | AM_CFLAGS = $(if $(test), 2> $(test), ) \
|
---|
[87fc1b4] | 40 | -fdebug-prefix-map=$(abspath ${abs_srcdir})= \
|
---|
| 41 | -fdebug-prefix-map=/tmp= \
|
---|
[0a19c51] | 42 | -fno-diagnostics-show-caret \
|
---|
[b8f6002] | 43 | -g \
|
---|
| 44 | -Wall \
|
---|
[850aff1] | 45 | -Werror=return-type \
|
---|
[b8f6002] | 46 | -Wno-unused-function \
|
---|
[36fbaeca] | 47 | -Wno-psabi \
|
---|
[b44959f] | 48 | -quiet @CFA_FLAGS@
|
---|
[7c03d6d] | 49 |
|
---|
[7215000] | 50 | AM_CFAFLAGS = -XCFA --deterministic-out
|
---|
| 51 |
|
---|
[158b026] | 52 | # get the desired cfa to test
|
---|
| 53 | TARGET_CFA = $(if $(filter $(installed),yes), @CFACC_INSTALL@, @CFACC@)
|
---|
| 54 |
|
---|
[34e1494] | 55 | # adjust CC to current flags
|
---|
[e2e31c6] | 56 | CC = LC_ALL=C $(if $(DISTCC_CFA_PATH),distcc $(DISTCC_CFA_PATH) ${ARCH_FLAGS} ,$(TARGET_CFA) ${DEBUG_FLAGS} ${ARCH_FLAGS})
|
---|
[d65f92c] | 57 | CFACC = $(CC)
|
---|
[ef7d253] | 58 |
|
---|
[34e1494] | 59 | # get local binary for depedencies
|
---|
| 60 | CFACCBIN = @CFACC@
|
---|
| 61 |
|
---|
| 62 | # adjusted CC but without the actual distcc call
|
---|
[e173d3c] | 63 | CFACCLOCAL = $(if $(DISTCC_CFA_PATH),$(DISTCC_CFA_PATH) ${ARCH_FLAGS} ,$(TARGET_CFA) ${DEBUG_FLAGS} ${ARCH_FLAGS})
|
---|
[fe94e708] | 64 | CFACCLINK = $(CFACCLOCAL) -quiet $(if $(test), 2> $(test), ) $($(shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g'))
|
---|
[34e1494] | 65 |
|
---|
[e16797c] | 66 | PRETTY_PATH=mkdir -p $(dir $(abspath ${@})) && cd ${srcdir} &&
|
---|
[f7d3215] | 67 |
|
---|
[fc01219] | 68 | .PHONY: list .validate .test_makeflags
|
---|
| 69 | .INTERMEDIATE: .validate .validate.cfa .test_makeflags
|
---|
[aff7e86] | 70 | EXTRA_PROGRAMS = avl_test linkonce .dummy_hack # build but do not install
|
---|
[a468e1e9] | 71 | EXTRA_DIST = test.py \
|
---|
| 72 | pybin/__init__.py \
|
---|
| 73 | pybin/print-core.gdb \
|
---|
| 74 | pybin/settings.py \
|
---|
| 75 | pybin/test_run.py \
|
---|
| 76 | pybin/tools.py \
|
---|
| 77 | long_tests.hfa \
|
---|
[d0fa494] | 78 | avltree/avl-private.h \
|
---|
| 79 | avltree/avl.h \
|
---|
| 80 | concurrent/clib_tls.c \
|
---|
| 81 | concurrent/clib.c \
|
---|
[d0a00a5a] | 82 | configs/.in/parseconfig-all.txt \
|
---|
| 83 | configs/.in/parseconfig-errors.txt \
|
---|
| 84 | configs/.in/parseconfig-missing.txt \
|
---|
[d0fa494] | 85 | exceptions/except-io.hfa \
|
---|
| 86 | exceptions/with-threads.hfa \
|
---|
[b44959f] | 87 | io/.in/io.data \
|
---|
[3bd5ca7] | 88 | io/.in/many_read.data \
|
---|
[d0fa494] | 89 | meta/fork+exec.hfa \
|
---|
[3ad9097] | 90 | unified_locking/mutex_test.hfa
|
---|
[a468e1e9] | 91 |
|
---|
| 92 | dist-hook:
|
---|
| 93 | echo "Gathering test files"
|
---|
| 94 | for file in `${TEST_PY} --list-dist`; do \
|
---|
| 95 | if test -f ${srcdir}/$${file}; then \
|
---|
| 96 | $(MKDIR_P) $$(dirname ${distdir}/$${file}); \
|
---|
| 97 | cp -df ${srcdir}/$${file} ${distdir}/$${file}; \
|
---|
| 98 | fi; \
|
---|
| 99 | done
|
---|
[44f44617] | 100 |
|
---|
[107b01a] | 101 | avl_test_SOURCES = avltree/avl_test.cfa avltree/avl0.cfa avltree/avl1.cfa avltree/avl2.cfa avltree/avl3.cfa avltree/avl4.cfa avltree/avl-private.cfa
|
---|
[aff7e86] | 102 | linkonce_SOURCES = link-once/main.cfa link-once/partner.cfa
|
---|
[2b10f95] | 103 | # automake doesn't know we still need C/CPP rules so pretend like we have a C program
|
---|
[b7fe2e6] | 104 | nodist__dummy_hack_SOURCES = .dummy_hack.c .dummy_hackxx.cpp
|
---|
[a0dcd2e] | 105 |
|
---|
[73abe95] | 106 | #----------------------------------------------------------------------------------------------------------------
|
---|
[927e9ce] | 107 | all-local :
|
---|
[5c4a473] | 108 | @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} ${quick_test}
|
---|
[df42128] | 109 |
|
---|
| 110 | all-tests :
|
---|
[5c4a473] | 111 | @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
|
---|
[927e9ce] | 112 |
|
---|
[2a59655] | 113 | mostlyclean-local :
|
---|
[0783909] | 114 | find ${builddir} -not -path './__pycache__/*' -path '*.o' -delete
|
---|
| 115 | find ${builddir} -not -path './__pycache__/*' -path '*/.err/*.log' -delete
|
---|
| 116 | find ${builddir} -not -path './__pycache__/*' -path '*/.out/*.log' -delete
|
---|
[a6dd5b0] | 117 | rm -f ${EXTRA_PROGRAMS}
|
---|
[2a59655] | 118 | rm -rf __pycache__
|
---|
| 119 |
|
---|
| 120 | distclean-local :
|
---|
| 121 | find ${builddir} -path '*.Po' -delete
|
---|
[927e9ce] | 122 |
|
---|
| 123 | list :
|
---|
[f85bc15] | 124 | @+${TEST_PY} --list ${concurrent}
|
---|
[927e9ce] | 125 |
|
---|
[fc01219] | 126 | .test_makeflags:
|
---|
| 127 | @echo "${MAKEFLAGS}"
|
---|
| 128 |
|
---|
[1e995d6] | 129 | .validate: .validate.cfa
|
---|
| 130 | $(CFACOMPILE) .validate.cfa -fsyntax-only -Wall -Wextra -Werror
|
---|
| 131 |
|
---|
| 132 | .validate.cfa:
|
---|
| 133 | @echo "int main() { return 0; }" > ${@}
|
---|
[28582b2] | 134 |
|
---|
[107b01a] | 135 | # automake doesn't know we still need C rules so pretend like we have a C program
|
---|
| 136 | .dummy_hack.c:
|
---|
[28582b2] | 137 | @echo "int main() { return 0; }" > ${@}
|
---|
| 138 |
|
---|
[2b10f95] | 139 | .dummy_hackxx.cpp:
|
---|
| 140 | @echo "int bar() { return 0; }" > ${@}
|
---|
| 141 |
|
---|
[026a0f5] | 142 | concurrency :
|
---|
[a5121bf] | 143 | @+${TEST_PY} --debug=${debug} --install=${installed} -Iconcurrent
|
---|
[026a0f5] | 144 |
|
---|
[73abe95] | 145 | #----------------------------------------------------------------------------------------------------------------
|
---|
[dc8511c] | 146 |
|
---|
[e16797c] | 147 | # Use for all tests, make sure the path are correct and all flags are added
|
---|
[34e1494] | 148 | CFACOMPILETEST=$(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) $($(shell echo "${@}_FLAGSCFA" | sed 's/-\|\//_/g'))
|
---|
[d9b499c] | 149 |
|
---|
[e16797c] | 150 | #----------------------------------------------------------------------------------------------------------------
|
---|
[a843067] | 151 |
|
---|
[e16797c] | 152 | # implicit rule so not all test require a rule
|
---|
[15f9c8e] | 153 | # split into two steps to support compiling remotely using distcc
|
---|
[34e1494] | 154 | # don't use distcc to do the linking because distcc doesn't do linking
|
---|
[d65f92c] | 155 | % : %.cfa $(CFACCBIN)
|
---|
[b44959f] | 156 | $(CFACOMPILETEST) -c -o $(abspath ${@}).o -DIN_DIR="$(abspath $(dir ${<}))/.in/"
|
---|
[673eb7a] | 157 | $(CFACCLINK) ${@}.o -o $(abspath ${@})
|
---|
[468c5aa] | 158 | rm $(abspath ${@}).o
|
---|
[f7d3215] | 159 |
|
---|
[34e1494] | 160 | # implicit rule for c++ test
|
---|
| 161 | # convient for testing the testsuite itself but not actuall used
|
---|
[e16797c] | 162 | % : %.cpp
|
---|
| 163 | $(PRETTY_PATH) $(CXXCOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})
|
---|
[4c8f86b3] | 164 |
|
---|
[f7d3215] | 165 | #------------------------------------------------------------------------------
|
---|
[34e1494] | 166 | # TARGETS WITH CUSTOM FLAGS
|
---|
[e16797c] | 167 | #------------------------------------------------------------------------------
|
---|
[34e1494] | 168 | # custom libs
|
---|
| 169 | gmp_FLAGSLD= -lgmp
|
---|
[dc8511c] | 170 |
|
---|
[e16797c] | 171 | #------------------------------------------------------------------------------
|
---|
[34e1494] | 172 | # Generated code
|
---|
| 173 | GENERATED_CODE = declarationSpecifier gccExtensions extension attributes functions KRfunctions
|
---|
| 174 | $(GENERATED_CODE): % : %.cfa $(CFACCBIN)
|
---|
| 175 | $(CFACOMPILETEST) -CFA -XCFA -p -c -fsyntax-only -o $(abspath ${@})
|
---|
| 176 |
|
---|
[e16797c] | 177 | #------------------------------------------------------------------------------
|
---|
| 178 | # CUSTOM TARGET
|
---|
| 179 | #------------------------------------------------------------------------------
|
---|
[66812dd] | 180 | # tests that just validate syntax and compiler output should be compared to stderr
|
---|
[e6cfb4e2] | 181 | CFACOMPILE_SYNTAX = $(CFACOMPILETEST) -Wno-unused-variable -Wno-unused-label -c -fsyntax-only -o $(abspath ${@})
|
---|
[40c81e5] | 182 |
|
---|
| 183 | SYNTAX_ONLY_CODE = expression typedefRedef variableDeclarator switch numericConstants identFuncDeclarator forall \
|
---|
[53692b3] | 184 | init1 limits nested-types cast labelledExit array quasiKeyword include/stdincludes include/includes builtins/sync warnings/self-assignment
|
---|
[66812dd] | 185 | $(SYNTAX_ONLY_CODE): % : %.cfa $(CFACCBIN)
|
---|
[e6cfb4e2] | 186 | $(CFACOMPILE_SYNTAX)
|
---|
| 187 | $(if $(test), cp $(test) $(abspath ${@}), )
|
---|
[87fc1b4] | 188 |
|
---|
[34e1494] | 189 | # expected failures
|
---|
[e6cfb4e2] | 190 | # use custom target since they require a custom define *and* have a name that doesn't match the file
|
---|
[34e1494] | 191 | alloc-ERROR : alloc.cfa $(CFACCBIN)
|
---|
[e6cfb4e2] | 192 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
| 193 | -cp $(test) $(abspath ${@})
|
---|
[b93a3de] | 194 |
|
---|
[ee858bf] | 195 | init1-ERROR : init1.cfa $(CFACCBIN)
|
---|
| 196 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
| 197 | -cp $(test) $(abspath ${@})
|
---|
| 198 |
|
---|
[34e1494] | 199 | typedefRedef-ERR1 : typedefRedef.cfa $(CFACCBIN)
|
---|
[e6cfb4e2] | 200 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
| 201 | -cp $(test) $(abspath ${@})
|
---|
[e2c70ab] | 202 |
|
---|
[34e1494] | 203 | nested-types-ERR1 : nested-types.cfa $(CFACCBIN)
|
---|
[e6cfb4e2] | 204 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
| 205 | -cp $(test) $(abspath ${@})
|
---|
[49e1275] | 206 |
|
---|
[34e1494] | 207 | nested-types-ERR2 : nested-types.cfa $(CFACCBIN)
|
---|
[e6cfb4e2] | 208 | $(CFACOMPILE_SYNTAX) -DERR2
|
---|
| 209 | -cp $(test) $(abspath ${@})
|
---|
[49e1275] | 210 |
|
---|
[34e1494] | 211 | raii/memberCtors-ERR1 : raii/memberCtors.cfa $(CFACCBIN)
|
---|
[e6cfb4e2] | 212 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
| 213 | -cp $(test) $(abspath ${@})
|
---|
[cdbfab0] | 214 |
|
---|
[34e1494] | 215 | raii/ctor-autogen-ERR1 : raii/ctor-autogen.cfa $(CFACCBIN)
|
---|
[e6cfb4e2] | 216 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
| 217 | -cp $(test) $(abspath ${@})
|
---|
[80e8582] | 218 |
|
---|
[34e1494] | 219 | raii/dtor-early-exit-ERR1 : raii/dtor-early-exit.cfa $(CFACCBIN)
|
---|
[e6cfb4e2] | 220 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
| 221 | -cp $(test) $(abspath ${@})
|
---|
[80e8582] | 222 |
|
---|
[34e1494] | 223 | raii/dtor-early-exit-ERR2 : raii/dtor-early-exit.cfa $(CFACCBIN)
|
---|
[e6cfb4e2] | 224 | $(CFACOMPILE_SYNTAX) -DERR2
|
---|
| 225 | -cp $(test) $(abspath ${@})
|
---|
[e16797c] | 226 |
|
---|
[5715d43] | 227 | # Exception Tests
|
---|
| 228 | # Test with libcfathread; it changes how storage works.
|
---|
| 229 |
|
---|
| 230 | exceptions/%-threads : exceptions/%.cfa $(CFACCBIN)
|
---|
| 231 | $(CFACOMPILETEST) -include exceptions/with-threads.hfa -c -o $(abspath ${@}).o
|
---|
| 232 | $(CFACCLOCAL) $($(shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g')) $(abspath ${@}).o -o $(abspath ${@})
|
---|
| 233 |
|
---|
[673eb7a] | 234 | # Linking tests
|
---|
| 235 | # Meta tests to make sure we see linking errors (can't compile with -O2 since it may multiply number of calls)
|
---|
| 236 | linking/linkerror : linking/linkerror.cfa $(CFACCBIN)
|
---|
| 237 | $(CFACOMPILETEST) -O0 -c -o $(abspath ${@}).o
|
---|
| 238 | $(CFACCLINK) -O0 ${@}.o -o $(abspath ${@})
|
---|
[a951171] | 239 | rm $(abspath ${@}).o
|
---|
[673eb7a] | 240 |
|
---|
[34e1494] | 241 | #------------------------------------------------------------------------------
|
---|
| 242 | # Other targets
|
---|