[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 |
---|
[c386bc1] | 13 | ## Last Modified On : Tue Oct 10 14:04:40 2017 |
---|
| 14 | ## Update Count : 47 |
---|
[ef7d253] | 15 | ############################################################################### |
---|
| 16 | |
---|
[cc640aad] | 17 | debug=yes |
---|
| 18 | |
---|
[e325958] | 19 | quick_test=vector_test avl_test operators numericConstants expression enum array typeof cast dtor-early-exit init_once attributes |
---|
[be65cca] | 20 | |
---|
| 21 | if BUILD_CONCURRENCY |
---|
[ec95d11] | 22 | concurrent = yes |
---|
| 23 | quick_test += coroutine thread monitor |
---|
[cd034920] | 24 | concurrent_test = \ |
---|
| 25 | coroutine \ |
---|
| 26 | fmtLines \ |
---|
| 27 | pingpong \ |
---|
[c386bc1] | 28 | prodcons \ |
---|
[cd034920] | 29 | thread \ |
---|
| 30 | matrixSum \ |
---|
| 31 | monitor \ |
---|
| 32 | multi-monitor \ |
---|
| 33 | boundedBuffer \ |
---|
| 34 | preempt \ |
---|
| 35 | sched-int-block \ |
---|
| 36 | sched-int-disjoint \ |
---|
| 37 | sched-int-wait \ |
---|
| 38 | sched-ext-barge \ |
---|
| 39 | sched-ext-dtor \ |
---|
| 40 | sched-ext-else \ |
---|
| 41 | sched-ext-parse \ |
---|
| 42 | sched-ext-recurse \ |
---|
| 43 | sched-ext-statment \ |
---|
[12914e9] | 44 | sched-ext-when |
---|
[be65cca] | 45 | else |
---|
| 46 | concurrent=no |
---|
[026a0f5] | 47 | concurrent_test= |
---|
[be65cca] | 48 | endif |
---|
| 49 | |
---|
[ef7d253] | 50 | # applies to both programs |
---|
[b5f9829] | 51 | DEBUG_FLAGS = |
---|
[7c03d6d] | 52 | |
---|
[b5f9829] | 53 | BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ |
---|
| 54 | if !BUILD_DEBUG |
---|
| 55 | BUILD_FLAGS += -nodebug |
---|
| 56 | else |
---|
| 57 | if !BUILD_RELEASE |
---|
| 58 | BUILD_FLAGS += -debug |
---|
| 59 | else |
---|
[7c03d6d] | 60 | BUILD_FLAGS += ${DEBUG_FLAGS} |
---|
[b5f9829] | 61 | endif |
---|
| 62 | endif |
---|
| 63 | |
---|
[592b9fa] | 64 | TEST_FLAGS = $(if $(test), 2> .err/${@}.log, ) |
---|
[44f44617] | 65 | AM_CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS} |
---|
[df47e2f] | 66 | CC = @CFA_BINDIR@/@CFA_NAME@ |
---|
[ef7d253] | 67 | |
---|
[927e9ce] | 68 | .PHONY : list |
---|
[7f612112] | 69 | EXTRA_PROGRAMS = fstream_test vector_test avl_test # build but do not install |
---|
[927e9ce] | 70 | |
---|
[ef7d253] | 71 | fstream_test_SOURCES = fstream_test.c |
---|
[44f44617] | 72 | fstream_test_CFLAGS = $(if $(test), 2>> .err/fstream_test.log, ) ${BUILD_FLAGS} |
---|
| 73 | |
---|
[1c31f68] | 74 | vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c |
---|
[44f44617] | 75 | vector_test_CFLAGS = $(if $(test), 2>> .err/vector_test.log, ) ${BUILD_FLAGS} |
---|
| 76 | |
---|
[ef7d253] | 77 | 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 |
---|
[44f44617] | 78 | avl_test_CFLAGS = $(if $(test), 2>> .err/avl_test.log, ) ${BUILD_FLAGS} |
---|
[a0dcd2e] | 79 | |
---|
[927e9ce] | 80 | all-local : |
---|
[871b664] | 81 | @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test} |
---|
[df42128] | 82 | |
---|
| 83 | all-tests : |
---|
[be65cca] | 84 | @+python test.py --all --debug=${debug} --concurrent=${concurrent} # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program |
---|
[927e9ce] | 85 | |
---|
| 86 | clean-local : |
---|
[a6dd5b0] | 87 | rm -f ${EXTRA_PROGRAMS} |
---|
[927e9ce] | 88 | |
---|
| 89 | list : |
---|
[be65cca] | 90 | @+python test.py --list --concurrent=${concurrent} |
---|
[927e9ce] | 91 | |
---|
[026a0f5] | 92 | concurrency : |
---|
| 93 | @+python test.py --debug=${debug} --concurrent=${concurrent} ${concurrent_test} |
---|
| 94 | |
---|
[8f8af30] | 95 | .dummy : .dummy.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[47f9422] | 96 | ${CC} ${BUILD_FLAGS} -XCFA -n ${<} -o ${@} #don't use CFLAGS, this rule is not a real test |
---|
[7895d46] | 97 | |
---|
[8f8af30] | 98 | |
---|
| 99 | % : %.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[44f44617] | 100 | ${CC} ${AM_CFLAGS} ${CFLAGS} ${<} -o ${@} |
---|
[8f8af30] | 101 | |
---|
| 102 | dtor-early-exit-ERR1: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[44f44617] | 103 | ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@} |
---|
[85f0713] | 104 | |
---|
[8f8af30] | 105 | dtor-early-exit-ERR2: dtor-early-exit.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[44f44617] | 106 | ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR2 ${<} -o ${@} |
---|
[85f0713] | 107 | |
---|
[8f8af30] | 108 | declarationSpecifier: declarationSpecifier.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[6de43b6] | 109 | ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} |
---|
[950f7a7] | 110 | |
---|
[8f8af30] | 111 | gccExtensions : gccExtensions.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[6de43b6] | 112 | ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} |
---|
[d9b499c] | 113 | |
---|
[8f8af30] | 114 | extension : extension.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[6de43b6] | 115 | ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} |
---|
[d9b499c] | 116 | |
---|
[8f8af30] | 117 | attributes : attributes.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[6de43b6] | 118 | ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} |
---|
[c0aa336] | 119 | |
---|
[8f8af30] | 120 | KRfunctions : KRfunctions.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[6de43b6] | 121 | ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} |
---|
[3a5131ed] | 122 | |
---|
[cd218e8] | 123 | literals : literals.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[6de43b6] | 124 | ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} |
---|
[cd218e8] | 125 | |
---|
[a843067] | 126 | sched-ext-parse : sched-ext-parse.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[6de43b6] | 127 | ${CC} ${AM_CFLAGS} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} |
---|
[a843067] | 128 | |
---|
[8f8af30] | 129 | gmp : gmp.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[44f44617] | 130 | ${CC} ${AM_CFLAGS} ${CFLAGS} -lgmp ${<} -o ${@} |
---|
[4c8f86b3] | 131 | |
---|
[8f8af30] | 132 | memberCtors-ERR1: memberCtors.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[44f44617] | 133 | ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@} |
---|
[486341f] | 134 | |
---|
[b93a3de] | 135 | ctor-autogen-ERR1: ctor-autogen.c @CFA_BINDIR@/@CFA_NAME@ |
---|
| 136 | ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@} |
---|
| 137 | |
---|
[8f8af30] | 138 | completeTypeError : completeTypeError.c @CFA_BINDIR@/@CFA_NAME@ |
---|
[44f44617] | 139 | ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@} |
---|
[70529dc] | 140 | |
---|
| 141 | typedefRedef-ERR1: typedefRedef.c @CFA_BINDIR@/@CFA_NAME@ |
---|
| 142 | ${CC} ${AM_CFLAGS} ${CFLAGS} -DERR1 ${<} -o ${@} |
---|