mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
9cb746ac2e
svn:r478
24 lines
573 B
Makefile
24 lines
573 B
Makefile
TESTS = test
|
|
|
|
noinst_PROGRAMS = test
|
|
|
|
bin_PROGRAMS = tor
|
|
|
|
tor_SOURCES = buffers.c circuit.c command.c connection.c \
|
|
connection_or.c config.c \
|
|
onion.c routers.c directory.c dns.c connection_edge.c \
|
|
cpuworker.c main.c tor_main.c
|
|
|
|
tor_LDADD = ../common/libor.a
|
|
|
|
test_SOURCES = buffers.c circuit.c command.c connection.c \
|
|
connection_or.c config.c \
|
|
onion.c routers.c directory.c dns.c connection_edge.c \
|
|
cpuworker.c main.c test.c
|
|
|
|
test_LDADD = ../common/libor.a
|
|
|
|
noinst_HEADERS = or.h tree.h
|
|
|
|
|