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