| [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 | 
|---|
| [3a5131ed] | 13 | ## Last Modified On : Thu Feb 16 15:27:50 2017 | 
|---|
|  | 14 | ## Update Count     : 41 | 
|---|
| [ef7d253] | 15 | ############################################################################### | 
|---|
|  | 16 |  | 
|---|
| [cc640aad] | 17 | debug=yes | 
|---|
|  | 18 |  | 
|---|
| [be65cca] | 19 | quick_test=vector_test avl_test operators numericConstants expression enum array typeof cast dtor-early-exit init_once | 
|---|
|  | 20 |  | 
|---|
|  | 21 | if BUILD_CONCURRENCY | 
|---|
|  | 22 | concurrent=yes | 
|---|
|  | 23 | quick_test+= coroutine thread monitor | 
|---|
| [026a0f5] | 24 | concurrent_test=coroutine thread monitor multi-monitor sched-int sched-ext preempt | 
|---|
| [be65cca] | 25 | else | 
|---|
|  | 26 | concurrent=no | 
|---|
| [026a0f5] | 27 | concurrent_test= | 
|---|
| [be65cca] | 28 | endif | 
|---|
|  | 29 |  | 
|---|
| [ef7d253] | 30 | # applies to both programs | 
|---|
| [4782b39] | 31 | EXTRA_FLAGS = | 
|---|
| [47f9422] | 32 | BUILD_FLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ ${EXTRA_FLAGS} | 
|---|
| [592b9fa] | 33 | TEST_FLAGS = $(if $(test), 2> .err/${@}.log, ) | 
|---|
|  | 34 | CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS} | 
|---|
| [df47e2f] | 35 | CC = @CFA_BINDIR@/@CFA_NAME@ | 
|---|
| [ef7d253] | 36 |  | 
|---|
| [927e9ce] | 37 | .PHONY : list | 
|---|
| [8f62de7] | 38 | EXTRA_PROGRAMS = fstream_test vector_test avl_test constant0-1DP constant0-1ND constant0-1NDDP # build but do not install | 
|---|
| [927e9ce] | 39 |  | 
|---|
| [ef7d253] | 40 | fstream_test_SOURCES = fstream_test.c | 
|---|
| [1c31f68] | 41 | vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c | 
|---|
| [ef7d253] | 42 | 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 | 
|---|
| [a0dcd2e] | 43 |  | 
|---|
| [927e9ce] | 44 | all-local : | 
|---|
| [871b664] | 45 | @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test} | 
|---|
| [df42128] | 46 |  | 
|---|
|  | 47 | all-tests : | 
|---|
| [be65cca] | 48 | @+python test.py --all --debug=${debug} --concurrent=${concurrent}              # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program | 
|---|
| [927e9ce] | 49 |  | 
|---|
|  | 50 | clean-local : | 
|---|
| [a6dd5b0] | 51 | rm -f ${EXTRA_PROGRAMS} | 
|---|
| [927e9ce] | 52 |  | 
|---|
|  | 53 | list : | 
|---|
| [be65cca] | 54 | @+python test.py --list --concurrent=${concurrent} | 
|---|
| [927e9ce] | 55 |  | 
|---|
| [026a0f5] | 56 | concurrency : | 
|---|
|  | 57 | @+python test.py --debug=${debug} --concurrent=${concurrent} ${concurrent_test} | 
|---|
|  | 58 |  | 
|---|
| [7895d46] | 59 | .dummy : .dummy.c | 
|---|
| [47f9422] | 60 | ${CC} ${BUILD_FLAGS} -XCFA -n ${<} -o ${@}                              #don't use CFLAGS, this rule is not a real test | 
|---|
| [7895d46] | 61 |  | 
|---|
| [8f62de7] | 62 | constant0-1DP : constant0-1.c | 
|---|
| [a0dcd2e] | 63 | ${CC} ${CFLAGS} -DDUPS ${<} -o ${@} | 
|---|
|  | 64 |  | 
|---|
| [8f62de7] | 65 | constant0-1ND : constant0-1.c | 
|---|
| [a0dcd2e] | 66 | ${CC} ${CFLAGS} -DNEWDECL ${<} -o ${@} | 
|---|
|  | 67 |  | 
|---|
| [8f62de7] | 68 | constant0-1NDDP : constant0-1.c | 
|---|
| [a0dcd2e] | 69 | ${CC} ${CFLAGS} -DNEWDECL -DDUPS ${<} -o ${@} | 
|---|
| [85f0713] | 70 |  | 
|---|
|  | 71 | dtor-early-exit-ERR1: dtor-early-exit.c | 
|---|
|  | 72 | ${CC} ${CFLAGS} -DERR1 ${<} -o ${@} | 
|---|
|  | 73 |  | 
|---|
|  | 74 | dtor-early-exit-ERR2: dtor-early-exit.c | 
|---|
|  | 75 | ${CC} ${CFLAGS} -DERR2 ${<} -o ${@} | 
|---|
|  | 76 |  | 
|---|
| [950f7a7] | 77 | declarationSpecifier: declarationSpecifier.c | 
|---|
| [6a1bdfd] | 78 | ${CC} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} | 
|---|
| [950f7a7] | 79 |  | 
|---|
| [97203a7] | 80 | gccExtensions : gccExtensions.c | 
|---|
|  | 81 | ${CC} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} | 
|---|
| [d9b499c] | 82 |  | 
|---|
|  | 83 | extension : extension.c | 
|---|
|  | 84 | ${CC} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} | 
|---|
|  | 85 |  | 
|---|
| [c0aa336] | 86 | attributes : attributes.c | 
|---|
|  | 87 | ${CC} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} | 
|---|
|  | 88 |  | 
|---|
| [3a5131ed] | 89 | KRfunctions : KRfunctions.c | 
|---|
|  | 90 | ${CC} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} | 
|---|
|  | 91 |  | 
|---|
| [4d4882a] | 92 | memberCtors-ERR1: memberCtors.c | 
|---|
| [6a1bdfd] | 93 | ${CC} ${CFLAGS} -DERR1 ${<} -o ${@} | 
|---|
| [486341f] | 94 |  | 
|---|
| [2c57025] | 95 | completeTypeError : completeTypeError.c | 
|---|
| [66f8528] | 96 | ${CC} ${CFLAGS} -DERR1 ${<} -o ${@} | 
|---|