libevent/test/Makefile.am

24 lines
537 B
Makefile
Raw Normal View History

2003-03-08 05:24:26 +00:00
AUTOMAKE_OPTIONS = foreign no-dependencies
LDADD = -L.. -levent
CPPFPLAGS = -I..
2003-09-25 03:30:49 +00:00
CFLAGS = -I../compat -Wall @CFLAGS@
2003-03-08 05:24:26 +00:00
2003-09-25 17:55:17 +00:00
noinst_PROGRAMS = test-init test-eof test-weof test-time regress bench
2003-03-08 05:24:26 +00:00
2003-09-25 17:55:17 +00:00
test_init_sources = test-init.c
2003-03-08 05:24:26 +00:00
test_eof_sources = test-eof.c
test_weof_sources = test-weof.c
test_time_sources = test-time.c
regress_sources = regress.c
2003-03-10 05:39:41 +00:00
bench_sources = bench.c
2003-03-08 05:24:26 +00:00
DISTCLEANFILES = *~
all: test
2003-09-25 17:55:17 +00:00
test: test-init test-eof test-weof test-time regress
@./test.sh
2003-03-08 05:24:26 +00:00
2003-09-25 17:55:17 +00:00
bench test-init test-eof test-weof test-time regress: ../libevent.a