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 : Wed Jun 6 16:42:20 2018
|
---|
14 | ## Update Count : 49
|
---|
15 | ###############################################################################
|
---|
16 |
|
---|
17 |
|
---|
18 | debug=yes
|
---|
19 |
|
---|
20 | quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes
|
---|
21 |
|
---|
22 | if BUILD_CONCURRENCY
|
---|
23 | concurrent=
|
---|
24 | else
|
---|
25 | concurrent='-Econcurrent'
|
---|
26 | endif
|
---|
27 |
|
---|
28 | TEST_PY = python ${srcdir}/test.py
|
---|
29 |
|
---|
30 | # applies to both programs
|
---|
31 | DEBUG_FLAGS =
|
---|
32 |
|
---|
33 | BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -I.
|
---|
34 | if !BUILD_DEBUG
|
---|
35 | BUILD_FLAGS += -nodebug
|
---|
36 | else
|
---|
37 | if !BUILD_RELEASE
|
---|
38 | BUILD_FLAGS += -debug
|
---|
39 | else
|
---|
40 | BUILD_FLAGS += ${DEBUG_FLAGS}
|
---|
41 | endif
|
---|
42 | endif
|
---|
43 |
|
---|
44 | TEST_FLAGS = $(if $(test), 2> $(test), )
|
---|
45 | AM_CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
|
---|
46 | CC = ${abs_top_builddir}/src/driver/cfa -DIN_DIR="${srcdir}/.in/"
|
---|
47 |
|
---|
48 | .PHONY : list
|
---|
49 | EXTRA_PROGRAMS = fstream_test avl_test # build but do not install
|
---|
50 |
|
---|
51 | fstream_test_SOURCES = fstream_test.c
|
---|
52 | fstream_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
|
---|
53 |
|
---|
54 | avl_test_SOURCES = avltree/avl_test.c avltree/avl0.c avltree/avl1.c avltree/avl2.c avltree/avl3.c avltree/avl4.c avltree/avl-private.c
|
---|
55 | avl_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
|
---|
56 |
|
---|
57 | all-local :
|
---|
58 | @+${TEST_PY} --debug=${debug} ${concurrent} ${quick_test}
|
---|
59 |
|
---|
60 | all-tests :
|
---|
61 | @+${TEST_PY} --all --debug=${debug} ${concurrent} # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
|
---|
62 |
|
---|
63 | clean-local :
|
---|
64 | rm -f ${EXTRA_PROGRAMS}
|
---|
65 |
|
---|
66 | list :
|
---|
67 | @+${TEST_PY} --list ${concurrent}
|
---|
68 |
|
---|
69 | concurrency :
|
---|
70 | @+${TEST_PY} --debug=${debug} -Iconcurrent
|
---|
71 |
|
---|
72 | % : ${srcdir}/%.c @CFA_BINDIR@/@CFA_NAME@
|
---|
73 | $(COMPILE) $(abspath ${<}) -o ${@}
|
---|
74 |
|
---|
75 | declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@
|
---|
76 | $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
|
---|
77 |
|
---|
78 | gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@
|
---|
79 | $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
|
---|
80 |
|
---|
81 | extension : extension.c @CFA_BINDIR@/@CFA_NAME@
|
---|
82 | $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
|
---|
83 |
|
---|
84 | attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@
|
---|
85 | $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
|
---|
86 |
|
---|
87 | functions: functions.c @CFA_BINDIR@/@CFA_NAME@
|
---|
88 | $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
|
---|
89 |
|
---|
90 | KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@
|
---|
91 | $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
|
---|
92 |
|
---|
93 | sched-ext-parse : sched-ext-parse.c @CFA_BINDIR@/@CFA_NAME@
|
---|
94 | $(COMPILE) -CFA -XCFA -p $(abspath ${<}) -o ${@}
|
---|
95 |
|
---|
96 | gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@
|
---|
97 | $(COMPILE) -lgmp $(abspath ${<}) -o ${@}
|
---|
98 |
|
---|
99 | completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@
|
---|
100 | $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
|
---|
101 |
|
---|
102 | typedefRedef-ERR1: typedefRedef.c @CFA_BINDIR@/@CFA_NAME@
|
---|
103 | $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
|
---|
104 |
|
---|
105 | alloc-ERROR: alloc.c @CFA_BINDIR@/@CFA_NAME@
|
---|
106 | $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
|
---|
107 |
|
---|
108 | fallthrough-ERROR: fallthrough.c @CFA_BINDIR@/@CFA_NAME@
|
---|
109 | $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
|
---|
110 |
|
---|
111 | nested-types-ERR1: nested-types.c @CFA_BINDIR@/@CFA_NAME@
|
---|
112 | $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
|
---|
113 |
|
---|
114 | nested-types-ERR2: nested-types.c @CFA_BINDIR@/@CFA_NAME@
|
---|
115 | $(COMPILE) -DERR2 $(abspath ${<}) -o ${@}
|
---|
116 |
|
---|
117 | # Constructor/destructor tests
|
---|
118 | raii/dtor-early-exit-ERR1: raii/dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
|
---|
119 | $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
|
---|
120 |
|
---|
121 | raii/dtor-early-exit-ERR2: raii/dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@
|
---|
122 | $(COMPILE) -DERR2 $(abspath ${<}) -o ${@}
|
---|
123 |
|
---|
124 | raii/memberCtors-ERR1: raii/memberCtors.c @CFA_BINDIR@/@CFA_NAME@
|
---|
125 | $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
|
---|
126 |
|
---|
127 | raii/ctor-autogen-ERR1: raii/ctor-autogen.c @CFA_BINDIR@/@CFA_NAME@
|
---|
128 | $(COMPILE) -DERR1 $(abspath ${<}) -o ${@}
|
---|
129 |
|
---|
130 | # Warnings
|
---|
131 | warnings/self-assignment: warnings/self-assignment.c @CFA_BINDIR@/@CFA_NAME@
|
---|
132 | $(COMPILE) $(abspath ${<}) 2> ${@} -fsyntax-only
|
---|
133 |
|
---|
134 | #builtins
|
---|
135 | builtins/sync: builtins/sync.c @CFA_BINDIR@/@CFA_NAME@
|
---|
136 | $(COMPILE) $(abspath ${<}) 2> ${@} -fsyntax-only
|
---|