Makefile.am 419 B

123456789101112131415161718192021222324
  1. TESTS = \
  2. basic.test \
  3. commandline.test \
  4. executables.test \
  5. import-export.test \
  6. invite-join.test \
  7. ns-ping.test \
  8. ping.test \
  9. sptps-basic.test \
  10. variables.test
  11. dist_check_SCRIPTS = $(TESTS)
  12. EXTRA_DIST = testlib.sh
  13. check_PROGRAMS = pong
  14. pong_SOURCES = pong.c
  15. clean-local:
  16. -for pid in *.test.?/pid; do ../src/tinc --pidfile="$$pid" stop; done
  17. -killall ../src/sptps_test
  18. -killall pong
  19. -rm -rf *.test.?