Changeset f1ee72e for src/tests/Makefile.am
- Timestamp:
- Jun 23, 2016, 12:23:00 PM (10 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 4d3ca1d8
- Parents:
- c2931ea (diff), d56c05d0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/tests/Makefile.am (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/Makefile.am
rc2931ea rf1ee72e 11 11 ## Created On : Sun May 31 09:08:15 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon J an 25 22:31:42 201614 ## Update Count : 2513 ## Last Modified On : Mon Jun 20 14:30:52 2016 14 ## Update Count : 33 15 15 ############################################################################### 16 16 … … 19 19 CC = @CFA_BINDIR@/cfa 20 20 21 noinst_PROGRAMS = fstream_test vector_test avl_test # build but do not install 21 .PHONY : list 22 EXTRA_PROGRAMS = fstream_test vector_test avl_test Constant0-1DP Constant0-1ND Constant0-1NDDP # build but do not install 23 22 24 fstream_test_SOURCES = fstream_test.c 23 25 vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c 24 26 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 27 28 all-local : 29 python test.py vector_test avl_test Operators NumericConstants Expression Enum AsmName Array Typeof Cast 30 31 all-tests : 32 python test.py --all 33 34 clean-local : 35 -rm -f ${EXTRA_PROGRAMS} 36 37 list : 38 python test.py --list 39 40 Constant0-1DP : Constant0-1.c 41 ${CC} ${CFLAGS} -DDUPS ${<} -o ${@} 42 43 Constant0-1ND : Constant0-1.c 44 ${CC} ${CFLAGS} -DNEWDECL ${<} -o ${@} 45 46 Constant0-1NDDP : Constant0-1.c 47 ${CC} ${CFLAGS} -DNEWDECL -DDUPS ${<} -o ${@}
Note:
See TracChangeset
for help on using the changeset viewer.