mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-13 14:43:46 +01:00
f34e6da3e7
connection_ap_handshake_attach_circuit attaches to a circ of the right purpose add a skeletal rendclient.c svn:r1441
28 lines
677 B
Makefile
28 lines
677 B
Makefile
TESTS = test
|
|
|
|
noinst_PROGRAMS = test
|
|
|
|
bin_PROGRAMS = tor
|
|
|
|
tor_SOURCES = buffers.c circuit.c command.c config.c \
|
|
connection.c connection_edge.c connection_or.c \
|
|
cpuworker.c directory.c dirserv.c dns.c main.c \
|
|
onion.c rendcommon.c rendclient.c rendmid.c \
|
|
rendservice.c rephist.c router.c routerlist.c \
|
|
tor_main.c
|
|
|
|
tor_LDADD = ../common/libor.a
|
|
|
|
test_SOURCES = buffers.c circuit.c command.c config.c \
|
|
connection.c connection_edge.c connection_or.c \
|
|
cpuworker.c directory.c dirserv.c dns.c main.c \
|
|
onion.c rendcommon.c rendclient.c rendmid.c \
|
|
rendservice.c rephist.c router.c routerlist.c \
|
|
test.c
|
|
|
|
test_LDADD = ../common/libor.a
|
|
|
|
noinst_HEADERS = or.h tree.h
|
|
|
|
|