libevent/test/Makefile.am

31 lines
742 B
Makefile
Raw Normal View History

2003-03-08 05:24:26 +00:00
AUTOMAKE_OPTIONS = foreign no-dependencies
LDADD = ../libevent.la
2003-03-08 05:24:26 +00:00
CPPFPLAGS = -I..
2004-07-20 06:12:30 +00:00
CFLAGS = -I../compat @CFLAGS@
2003-03-08 05:24:26 +00:00
EXTRA_DIST = regress.rpc
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
BUILT_SOURCES = regress.gen.c regress.gen.h
test_init_SOURCES = test-init.c
test_eof_SOURCES = test-eof.c
test_weof_SOURCES = test-weof.c
test_time_SOURCES = test-time.c
regress_SOURCES = regress.c regress.gen.c regress.gen.h
bench_SOURCES = bench.c
regress.gen.c regress.gen.h: regress.rpc
../event_rpcgen.py regress.rpc
2003-03-08 05:24:26 +00:00
DISTCLEANFILES = *~
CLEANFILES = regress.gen.h regress.gen.c
2003-03-08 05:24:26 +00:00
2003-09-25 17:55:17 +00:00
test: test-init test-eof test-weof test-time regress
2004-12-01 19:59:00 +00:00
verify: test
2003-09-25 17:55:17 +00:00
@./test.sh
2003-03-08 05:24:26 +00:00
bench test-init test-eof test-weof test-time: ../libevent.la