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