mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
c4e60994a2
new functionality. svn:r172
31 lines
742 B
Makefile
31 lines
742 B
Makefile
AUTOMAKE_OPTIONS = foreign no-dependencies
|
|
|
|
LDADD = ../libevent.la
|
|
CPPFPLAGS = -I..
|
|
CFLAGS = -I../compat @CFLAGS@
|
|
|
|
EXTRA_DIST = regress.rpc
|
|
|
|
noinst_PROGRAMS = test-init test-eof test-weof test-time regress bench
|
|
|
|
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
|
|
|
|
DISTCLEANFILES = *~
|
|
CLEANFILES = regress.gen.h regress.gen.c
|
|
|
|
test: test-init test-eof test-weof test-time regress
|
|
|
|
verify: test
|
|
@./test.sh
|
|
|
|
bench test-init test-eof test-weof test-time: ../libevent.la
|