Makefile.am 593 B

1234567891011121314151617181920212223
  1. TESTS = test
  2. noinst_PROGRAMS = test
  3. bin_PROGRAMS = tor
  4. tor_SOURCES = buffers.c circuit.c command.c connection.c \
  5. connection_or.c config.c dirserv.c \
  6. onion.c routers.c directory.c dns.c connection_edge.c \
  7. cpuworker.c main.c tor_main.c
  8. tor_LDADD = ../common/libor.a
  9. test_SOURCES = buffers.c circuit.c command.c connection.c \
  10. connection_or.c config.c dirserv.c \
  11. onion.c routers.c directory.c dns.c connection_edge.c \
  12. cpuworker.c main.c test.c
  13. test_LDADD = ../common/libor.a
  14. noinst_HEADERS = or.h tree.h