libevent/test/Makefile.am

32 lines
811 B
Makefile
Raw Normal View History

2003-03-08 05:24:26 +00:00
AUTOMAKE_OPTIONS = foreign no-dependencies
LDADD = ../libevent.la
CPPFLAGS = -I.. -I../compat
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.h regress_http.c regress_dns.c \
regress_rpc.c \
regress.gen.c regress.gen.h
bench_SOURCES = bench.c
regress.gen.c regress.gen.h: regress.rpc
../event_rpcgen.py regress.rpc || echo "No Python installed"
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