A clone of btpd with my configuration changes.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
814 B

  1. AUTOMAKE_OPTIONS = foreign no-dependencies
  2. LDADD = ../libevent.la
  3. CPPFPLAGS = -I..
  4. CFLAGS = -I../compat @CFLAGS@
  5. EXTRA_DIST = regress.rpc
  6. noinst_PROGRAMS = test-init test-eof test-weof test-time regress bench
  7. BUILT_SOURCES = regress.gen.c regress.gen.h
  8. test_init_SOURCES = test-init.c
  9. test_eof_SOURCES = test-eof.c
  10. test_weof_SOURCES = test-weof.c
  11. test_time_SOURCES = test-time.c
  12. regress_SOURCES = regress.c regress.h regress_http.c regress_dns.c \
  13. regress.gen.c regress.gen.h
  14. bench_SOURCES = bench.c
  15. regress.gen.c regress.gen.h: regress.rpc
  16. ../event_rpcgen.py regress.rpc || echo "No Python installed"
  17. DISTCLEANFILES = *~
  18. CLEANFILES = regress.gen.h regress.gen.c
  19. test: test-init test-eof test-weof test-time regress
  20. verify: test
  21. @./test.sh
  22. bench test-init test-eof test-weof test-time: ../libevent.la