mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
a8203b3490
The big win here is that we can get process-level isolation. This has been tested to work okay on at least Linux and Win32. Only the tests in regress.c have been converted wrapped in the new wrapper functions; the others are still on the old system. svn:r1073
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
AUTOMAKE_OPTIONS = foreign no-dependencies
|
|
|
|
AM_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat -I$(top_srcdir)/include
|
|
|
|
EXTRA_DIST = regress.rpc regress.gen.h regress.gen.c
|
|
|
|
noinst_PROGRAMS = test-init test-eof test-weof test-time regress \
|
|
bench bench_cascade bench_http
|
|
noinst_HEADERS = tinytest.h tinytest_macros.h regress.h
|
|
|
|
BUILT_SOURCES = regress.gen.c regress.gen.h
|
|
test_init_SOURCES = test-init.c
|
|
test_init_LDADD = ../libevent_core.la
|
|
test_eof_SOURCES = test-eof.c
|
|
test_eof_LDADD = ../libevent_core.la
|
|
test_weof_SOURCES = test-weof.c
|
|
test_weof_LDADD = ../libevent_core.la
|
|
test_time_SOURCES = test-time.c
|
|
test_time_LDADD = ../libevent_core.la
|
|
|
|
regress_SOURCES = regress.c regress_http.c regress_dns.c \
|
|
regress_rpc.c regress.gen.c regress.gen.h regress_et.c \
|
|
regress_util.c tinytest.c regress_main.c \
|
|
$(regress_pthread_SOURCES) $(regress_zlib_SOURCES)
|
|
if PTHREADS
|
|
regress_pthread_SOURCES = regress_pthread.c
|
|
endif
|
|
if ZLIB_REGRESS
|
|
regress_zlib_SOURCES = regress_zlib.c
|
|
endif
|
|
regress_LDADD = ../libevent.la $(PTHREAD_LIBS) $(ZLIB_LIBS)
|
|
regress_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/compat \
|
|
-I$(top_srcdir)/include $(PTHREAD_CFLAGS) $(ZLIB_CFLAGS)
|
|
regress_LDFLAGS = $(PTHREAD_CFLAGS)
|
|
|
|
bench_SOURCES = bench.c
|
|
bench_LDADD = ../libevent.la
|
|
bench_cascade_SOURCES = bench_cascade.c
|
|
bench_cascade_LDADD = ../libevent.la
|
|
bench_http_SOURCES = bench_http.c
|
|
bench_http_LDADD = ../libevent.la
|
|
|
|
regress.gen.c regress.gen.h: regress.rpc $(top_srcdir)/event_rpcgen.py
|
|
$(top_srcdir)/event_rpcgen.py $(srcdir)/regress.rpc || echo "No Python installed"
|
|
|
|
DISTCLEANFILES = *~
|
|
|
|
test: test-init test-eof test-weof test-time regress
|
|
|
|
verify: test
|
|
@$(srcdir)/test.sh
|
|
|
|
bench test-init test-eof test-weof test-time: ../libevent.la
|