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
|
---|
13 | ## Last Modified On : Sat Jun 5 14:49:25 2021
|
---|
14 | ## Update Count : 92
|
---|
15 | ###############################################################################
|
---|
16 |
|
---|
17 | AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names
|
---|
18 | ACLOCAL_AMFLAGS = -I automake
|
---|
19 |
|
---|
20 | include $(top_srcdir)/tools/build/cfa.make
|
---|
21 |
|
---|
22 | DEFAULT_INCLUDES = -I${abs_srcdir}
|
---|
23 |
|
---|
24 | debug=yes
|
---|
25 | installed=no
|
---|
26 | archiveerrors=
|
---|
27 |
|
---|
28 | DEBUG_FLAGS=-debug -g -O0
|
---|
29 |
|
---|
30 | quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable
|
---|
31 |
|
---|
32 | concurrent=
|
---|
33 | timeouts=
|
---|
34 |
|
---|
35 | TEST_PY = python3 ${builddir}/test.py
|
---|
36 |
|
---|
37 | # applies to both programs
|
---|
38 | # since automake doesn't have support for CFA we have to
|
---|
39 | AM_CFLAGS = $(if $(test), 2> $(test), ) \
|
---|
40 | -fdebug-prefix-map=$(abspath ${abs_srcdir})= \
|
---|
41 | -fdebug-prefix-map=/tmp= \
|
---|
42 | -fno-diagnostics-show-caret \
|
---|
43 | -g \
|
---|
44 | -Wall \
|
---|
45 | -Werror=return-type \
|
---|
46 | -Wno-unused-function \
|
---|
47 | -Wno-psabi \
|
---|
48 | -quiet @CFA_FLAGS@
|
---|
49 |
|
---|
50 | AM_CFAFLAGS = -XCFA --deterministic-out
|
---|
51 |
|
---|
52 | # get the desired cfa to test
|
---|
53 | TARGET_CFA = $(if $(filter $(installed),yes), @CFACC_INSTALL@, @CFACC@)
|
---|
54 |
|
---|
55 | # adjust CC to current flags
|
---|
56 | CC = LC_ALL=C $(if $(DISTCC_CFA_PATH),distcc $(DISTCC_CFA_PATH) ${ARCH_FLAGS} ,$(TARGET_CFA) ${DEBUG_FLAGS} ${ARCH_FLAGS})
|
---|
57 | CFACC = $(CC)
|
---|
58 |
|
---|
59 | # get local binary for depedencies
|
---|
60 | CFACCBIN = @CFACC@
|
---|
61 |
|
---|
62 | # adjusted CC but without the actual distcc call
|
---|
63 | CFACCLOCAL = $(if $(DISTCC_CFA_PATH),$(DISTCC_CFA_PATH) ${ARCH_FLAGS} ,$(TARGET_CFA) ${DEBUG_FLAGS} ${ARCH_FLAGS})
|
---|
64 | CFACCLINK = $(CFACCLOCAL) -quiet $(if $(test), 2> $(test), ) $($(shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g'))
|
---|
65 |
|
---|
66 | PRETTY_PATH=mkdir -p $(dir $(abspath ${@})) && cd ${srcdir} &&
|
---|
67 |
|
---|
68 | .PHONY: list .validate .test_makeflags
|
---|
69 | .INTERMEDIATE: .validate .validate.cfa .test_makeflags
|
---|
70 | EXTRA_PROGRAMS = avl_test linkonce linking/mangling/anon .dummy_hack # build but do not install
|
---|
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 \
|
---|
78 | avltree/avl-private.h \
|
---|
79 | avltree/avl.h \
|
---|
80 | concurrent/clib_tls.c \
|
---|
81 | concurrent/clib.c \
|
---|
82 | configs/.in/parseconfig-all.txt \
|
---|
83 | configs/.in/parseconfig-errors.txt \
|
---|
84 | configs/.in/parseconfig-missing.txt \
|
---|
85 | exceptions/except-io.hfa \
|
---|
86 | exceptions/with-threads.hfa \
|
---|
87 | io/.in/io.data \
|
---|
88 | io/.in/many_read.data \
|
---|
89 | meta/fork+exec.hfa \
|
---|
90 | unified_locking/mutex_test.hfa
|
---|
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
|
---|
100 |
|
---|
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
|
---|
102 | linkonce_SOURCES = link-once/main.cfa link-once/partner.cfa
|
---|
103 | linking_mangling_anon_SOURCES = linking/mangling/header.hfa linking/mangling/lib.cfa linking/mangling/main.cfa
|
---|
104 | # automake doesn't know we still need C/CPP rules so pretend like we have a C program
|
---|
105 | nodist__dummy_hack_SOURCES = .dummy_hack.c .dummy_hackxx.cpp
|
---|
106 |
|
---|
107 | #----------------------------------------------------------------------------------------------------------------
|
---|
108 | all-local :
|
---|
109 | @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} ${quick_test}
|
---|
110 |
|
---|
111 | all-tests :
|
---|
112 | @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
|
---|
113 |
|
---|
114 | mostlyclean-local :
|
---|
115 | find ${builddir} -not -path './__pycache__/*' -path '*.o' -delete
|
---|
116 | find ${builddir} -not -path './__pycache__/*' -path '*/.err/*.log' -delete
|
---|
117 | find ${builddir} -not -path './__pycache__/*' -path '*/.out/*.log' -delete
|
---|
118 | rm -f ${EXTRA_PROGRAMS}
|
---|
119 | rm -rf __pycache__
|
---|
120 |
|
---|
121 | distclean-local :
|
---|
122 | find ${builddir} -path '*.Po' -delete
|
---|
123 |
|
---|
124 | list :
|
---|
125 | @+${TEST_PY} --list ${concurrent}
|
---|
126 |
|
---|
127 | .test_makeflags:
|
---|
128 | @echo "${MAKEFLAGS}"
|
---|
129 |
|
---|
130 | .validate: .validate.cfa
|
---|
131 | $(CFACOMPILE) .validate.cfa -fsyntax-only -Wall -Wextra -Werror
|
---|
132 |
|
---|
133 | .validate.cfa:
|
---|
134 | @echo "int main() { return 0; }" > ${@}
|
---|
135 |
|
---|
136 | # automake doesn't know we still need C rules so pretend like we have a C program
|
---|
137 | .dummy_hack.c:
|
---|
138 | @echo "int main() { return 0; }" > ${@}
|
---|
139 |
|
---|
140 | .dummy_hackxx.cpp:
|
---|
141 | @echo "int bar() { return 0; }" > ${@}
|
---|
142 |
|
---|
143 | concurrency :
|
---|
144 | @+${TEST_PY} --debug=${debug} --install=${installed} -Iconcurrent
|
---|
145 |
|
---|
146 | #----------------------------------------------------------------------------------------------------------------
|
---|
147 |
|
---|
148 | # Use for all tests, make sure the path are correct and all flags are added
|
---|
149 | CFACOMPILETEST=$(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) $($(shell echo "${@}_FLAGSCFA" | sed 's/-\|\//_/g'))
|
---|
150 |
|
---|
151 | #----------------------------------------------------------------------------------------------------------------
|
---|
152 |
|
---|
153 | # implicit rule so not all test require a rule
|
---|
154 | # split into two steps to support compiling remotely using distcc
|
---|
155 | # don't use distcc to do the linking because distcc doesn't do linking
|
---|
156 | % : %.cfa $(CFACCBIN)
|
---|
157 | $(CFACOMPILETEST) -c -o $(abspath ${@}).o -DIN_DIR="$(abspath $(dir ${<}))/.in/"
|
---|
158 | $(CFACCLINK) ${@}.o -o $(abspath ${@})
|
---|
159 | rm $(abspath ${@}).o
|
---|
160 |
|
---|
161 | # implicit rule for c++ test
|
---|
162 | # convient for testing the testsuite itself but not actuall used
|
---|
163 | % : %.cpp
|
---|
164 | $(PRETTY_PATH) $(CXXCOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})
|
---|
165 |
|
---|
166 | #------------------------------------------------------------------------------
|
---|
167 | # TARGETS WITH CUSTOM FLAGS
|
---|
168 | #------------------------------------------------------------------------------
|
---|
169 | # custom libs
|
---|
170 | gmp_FLAGSLD= -lgmp
|
---|
171 |
|
---|
172 | #------------------------------------------------------------------------------
|
---|
173 | # Generated code
|
---|
174 | GENERATED_CODE = declarationSpecifier gccExtensions extension attributes functions KRfunctions
|
---|
175 | $(GENERATED_CODE): % : %.cfa $(CFACCBIN)
|
---|
176 | $(CFACOMPILETEST) -CFA -XCFA -p -c -fsyntax-only -o $(abspath ${@})
|
---|
177 |
|
---|
178 | #------------------------------------------------------------------------------
|
---|
179 | # CUSTOM TARGET
|
---|
180 | #------------------------------------------------------------------------------
|
---|
181 | # tests that just validate syntax and compiler output should be compared to stderr
|
---|
182 | CFACOMPILE_SYNTAX = $(CFACOMPILETEST) -Wno-unused-variable -Wno-unused-label -c -fsyntax-only -o $(abspath ${@})
|
---|
183 |
|
---|
184 | SYNTAX_ONLY_CODE = expression typedefRedef variableDeclarator switch numericConstants identFuncDeclarator forall \
|
---|
185 | init1 limits nested-types cast labelledExit array quasiKeyword include/stdincludes include/includes builtins/sync warnings/self-assignment
|
---|
186 | $(SYNTAX_ONLY_CODE): % : %.cfa $(CFACCBIN)
|
---|
187 | $(CFACOMPILE_SYNTAX)
|
---|
188 | $(if $(test), cp $(test) $(abspath ${@}), )
|
---|
189 |
|
---|
190 | # expected failures
|
---|
191 | # use custom target since they require a custom define *and* have a name that doesn't match the file
|
---|
192 | alloc-ERROR : alloc.cfa $(CFACCBIN)
|
---|
193 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
194 | -cp $(test) $(abspath ${@})
|
---|
195 |
|
---|
196 | init1-ERROR : init1.cfa $(CFACCBIN)
|
---|
197 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
198 | -cp $(test) $(abspath ${@})
|
---|
199 |
|
---|
200 | typedefRedef-ERR1 : typedefRedef.cfa $(CFACCBIN)
|
---|
201 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
202 | -cp $(test) $(abspath ${@})
|
---|
203 |
|
---|
204 | nested-types-ERR1 : nested-types.cfa $(CFACCBIN)
|
---|
205 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
206 | -cp $(test) $(abspath ${@})
|
---|
207 |
|
---|
208 | nested-types-ERR2 : nested-types.cfa $(CFACCBIN)
|
---|
209 | $(CFACOMPILE_SYNTAX) -DERR2
|
---|
210 | -cp $(test) $(abspath ${@})
|
---|
211 |
|
---|
212 | raii/memberCtors-ERR1 : raii/memberCtors.cfa $(CFACCBIN)
|
---|
213 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
214 | -cp $(test) $(abspath ${@})
|
---|
215 |
|
---|
216 | raii/ctor-autogen-ERR1 : raii/ctor-autogen.cfa $(CFACCBIN)
|
---|
217 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
218 | -cp $(test) $(abspath ${@})
|
---|
219 |
|
---|
220 | raii/dtor-early-exit-ERR1 : raii/dtor-early-exit.cfa $(CFACCBIN)
|
---|
221 | $(CFACOMPILE_SYNTAX) -DERR1
|
---|
222 | -cp $(test) $(abspath ${@})
|
---|
223 |
|
---|
224 | raii/dtor-early-exit-ERR2 : raii/dtor-early-exit.cfa $(CFACCBIN)
|
---|
225 | $(CFACOMPILE_SYNTAX) -DERR2
|
---|
226 | -cp $(test) $(abspath ${@})
|
---|
227 |
|
---|
228 | # Exception Tests
|
---|
229 | # Test with libcfathread; it changes how storage works.
|
---|
230 |
|
---|
231 | exceptions/%-threads : exceptions/%.cfa $(CFACCBIN)
|
---|
232 | $(CFACOMPILETEST) -include exceptions/with-threads.hfa -c -o $(abspath ${@}).o
|
---|
233 | $(CFACCLOCAL) $($(shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g')) $(abspath ${@}).o -o $(abspath ${@})
|
---|
234 |
|
---|
235 | # Linking tests
|
---|
236 | # Meta tests to make sure we see linking errors (can't compile with -O2 since it may multiply number of calls)
|
---|
237 | linking/linkerror : linking/linkerror.cfa $(CFACCBIN)
|
---|
238 | $(CFACOMPILETEST) -O0 -c -o $(abspath ${@}).o
|
---|
239 | $(CFACCLINK) -O0 ${@}.o -o $(abspath ${@})
|
---|
240 | rm $(abspath ${@}).o
|
---|
241 |
|
---|
242 | #------------------------------------------------------------------------------
|
---|
243 | # Other targets
|
---|