Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/Makefile.am

    r1c31f68 rdf42128  
    1111## Created On       : Sun May 31 09:08:15 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Mon Jan 25 22:31:42 2016
    14 ## Update Count     : 25
     13## Last Modified On : Mon Jun 20 14:30:52 2016
     14## Update Count     : 33
    1515###############################################################################
    1616
     
    1919CC = @CFA_BINDIR@/cfa
    2020
    21 noinst_PROGRAMS = fstream_test vector_test avl_test # build but do not install
     21.PHONY : list
     22EXTRA_PROGRAMS = fstream_test vector_test avl_test Constant0-1DP Constant0-1ND Constant0-1NDDP # build but do not install
     23
    2224fstream_test_SOURCES = fstream_test.c
    2325vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c
    2426avl_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
     28all-local :
     29        python test.py vector_test avl_test Operators NumericConstants Expression Enum AsmName Array Typeof Cast
     30
     31all-tests :
     32        python test.py --all
     33
     34clean-local :
     35        -rm -f ${EXTRA_PROGRAMS}
     36
     37list :
     38        python test.py --list
     39
     40Constant0-1DP : Constant0-1.c
     41        ${CC} ${CFLAGS} -DDUPS ${<} -o ${@}
     42
     43Constant0-1ND : Constant0-1.c
     44        ${CC} ${CFLAGS} -DNEWDECL ${<} -o ${@}
     45
     46Constant0-1NDDP : Constant0-1.c
     47        ${CC} ${CFLAGS} -DNEWDECL -DDUPS ${<} -o ${@}
Note: See TracChangeset for help on using the changeset viewer.