Changes in src/examples/Makefile.am [6e3ae00:38a0a4d]
- File:
-
- 1 edited
-
src/examples/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/examples/Makefile.am
r6e3ae00 r38a0a4d 16 16 17 17 # applies to both programs 18 CFLAGS = -g -Wall -Wno-unused-function # TEMPORARY: does not build with -O2 18 CFLAGS = 19 AM_CFLAGS = -g -Wall -Wno-unused-function -O2 19 20 CC = @CFA_BINDIR@/cfa 20 21 21 noinst_PROGRAMS = fstream_test vector_test avl_test # build but do not install22 noinst_PROGRAMS = fstream_test vector_test avl_test Bench # build but do not install 22 23 fstream_test_SOURCES = fstream_test.c 23 24 vector_test_SOURCES = vector_int.c array.c vector_test.c 24 25 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 26 27 Bench : Bench.c 28 @for ccflags in "-debug" "-nodebug"; do \ 29 echo ${CC} ${AM_CFLAGS} ${CFLAGS} $${ccflags} -lrt Bench.c;\ 30 ${CC} ${AM_CFLAGS} ${CFLAGS} $${ccflags} -lrt Bench.c;\ 31 ./a.out ; \ 32 done ; \ 33 rm -f ./a.out ;
Note:
See TracChangeset
for help on using the changeset viewer.