2003-03-08 05:24:26 +00:00
|
|
|
AUTOMAKE_OPTIONS = foreign no-dependencies
|
|
|
|
|
2007-08-20 14:44:15 +00:00
|
|
|
CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat
|
2003-03-08 05:24:26 +00:00
|
|
|
|
2005-08-22 01:34:34 +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
|
|
|
|
2005-08-22 01:34:34 +00:00
|
|
|
BUILT_SOURCES = regress.gen.c regress.gen.h
|
|
|
|
test_init_SOURCES = test-init.c
|
2007-11-03 23:45:38 +00:00
|
|
|
test_init_LDADD = ../libevent_core.la
|
2005-08-22 01:34:34 +00:00
|
|
|
test_eof_SOURCES = test-eof.c
|
2007-11-03 23:45:38 +00:00
|
|
|
test_eof_LDADD = ../libevent_core.la
|
2005-08-22 01:34:34 +00:00
|
|
|
test_weof_SOURCES = test-weof.c
|
2007-11-03 23:45:38 +00:00
|
|
|
test_weof_LDADD = ../libevent_core.la
|
2005-08-22 01:34:34 +00:00
|
|
|
test_time_SOURCES = test-time.c
|
2007-11-03 23:45:38 +00:00
|
|
|
test_time_LDADD = ../libevent_core.la
|
2006-08-27 20:04:20 +00:00
|
|
|
regress_SOURCES = regress.c regress.h regress_http.c regress_dns.c \
|
2006-11-16 07:36:20 +00:00
|
|
|
regress_rpc.c \
|
2006-01-22 05:08:50 +00:00
|
|
|
regress.gen.c regress.gen.h
|
2007-11-03 23:45:38 +00:00
|
|
|
regress_LDADD = ../libevent.la
|
2005-08-22 01:34:34 +00:00
|
|
|
bench_SOURCES = bench.c
|
2007-11-03 23:45:38 +00:00
|
|
|
bench_LDADD = ../libevent.la
|
2005-08-22 01:34:34 +00:00
|
|
|
|
|
|
|
regress.gen.c regress.gen.h: regress.rpc
|
2007-09-18 15:11:53 +00:00
|
|
|
$(top_srcdir)/event_rpcgen.py $(srcdir)/regress.rpc || echo "No Python installed"
|
2003-03-08 05:24:26 +00:00
|
|
|
|
|
|
|
DISTCLEANFILES = *~
|
2005-08-22 01:34:34 +00:00
|
|
|
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
|
|
|
|
2005-08-22 01:34:34 +00:00
|
|
|
bench test-init test-eof test-weof test-time: ../libevent.la
|