2003-04-07 04:12:02 +02:00
|
|
|
TESTS = test
|
2002-06-29 01:26:42 +02:00
|
|
|
|
2003-04-07 04:12:02 +02:00
|
|
|
noinst_PROGRAMS = test
|
2002-07-09 21:51:41 +02:00
|
|
|
|
2004-02-25 07:41:21 +01:00
|
|
|
bin_PROGRAMS = tor
|
2002-06-29 01:26:42 +02:00
|
|
|
|
2004-05-13 09:24:49 +02:00
|
|
|
tor_SOURCES = buffers.c circuitbuild.c circuitlist.c \
|
|
|
|
circuituse.c command.c config.c \
|
2004-11-03 02:32:26 +01:00
|
|
|
connection.c connection_edge.c connection_or.c control.c \
|
2004-10-31 21:28:41 +01:00
|
|
|
cpuworker.c directory.c dirserv.c dns.c hibernate.c main.c \
|
2006-03-27 04:25:34 +02:00
|
|
|
onion.c policies.c relay.c rendcommon.c rendclient.c rendmid.c \
|
2004-05-10 19:30:51 +02:00
|
|
|
rendservice.c rephist.c router.c routerlist.c routerparse.c \
|
2007-03-05 03:40:58 +01:00
|
|
|
eventdns.c \
|
2004-03-31 23:35:23 +02:00
|
|
|
tor_main.c
|
2002-06-29 01:26:42 +02:00
|
|
|
|
2007-05-01 04:53:32 +02:00
|
|
|
# -L flags need to go in LDFLAGS. -l flags need to go in LDADD.
|
|
|
|
# This seems to matter nowhere but on windows, but I assure you that it
|
|
|
|
# matters a lot there, and is quite hard to debug if you forget to do it.
|
2003-04-07 04:12:02 +02:00
|
|
|
|
2007-05-01 04:53:32 +02:00
|
|
|
tor_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ @TOR_LDFLAGS_libevent@
|
|
|
|
tor_LDADD = ../common/libor.a ../common/libor-crypto.a \
|
|
|
|
-lz -levent -lssl -lcrypto @TOR_LIB_WS32@ @TOR_LIB_GDI@
|
2004-05-13 09:24:49 +02:00
|
|
|
test_SOURCES = buffers.c circuitbuild.c circuitlist.c \
|
|
|
|
circuituse.c command.c config.c \
|
2004-11-03 02:32:26 +01:00
|
|
|
connection.c connection_edge.c connection_or.c control.c \
|
2004-10-31 21:28:41 +01:00
|
|
|
cpuworker.c directory.c dirserv.c dns.c hibernate.c main.c \
|
2006-03-27 04:25:34 +02:00
|
|
|
onion.c policies.c relay.c rendcommon.c rendclient.c rendmid.c \
|
2004-05-10 19:30:51 +02:00
|
|
|
rendservice.c rephist.c router.c routerlist.c routerparse.c \
|
2007-03-05 03:40:58 +01:00
|
|
|
eventdns.c \
|
2004-03-31 23:35:23 +02:00
|
|
|
test.c
|
2002-07-09 21:51:41 +02:00
|
|
|
|
2007-04-30 22:50:09 +02:00
|
|
|
test_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \
|
2007-05-01 04:53:32 +02:00
|
|
|
@TOR_LDFLAGS_libevent@
|
|
|
|
test_LDADD = ../common/libor.a ../common/libor-crypto.a \
|
|
|
|
-lz -levent -lssl -lcrypto @TOR_LIB_WS32@ @TOR_LIB_GDI@
|
2002-07-09 21:51:41 +02:00
|
|
|
|
2007-04-18 21:28:47 +02:00
|
|
|
noinst_HEADERS = or.h eventdns.h eventdns_tor.h micro-revision.i
|
2002-06-29 01:26:42 +02:00
|
|
|
|
2007-04-17 01:56:31 +02:00
|
|
|
tor_main.o: micro-revision.i
|
|
|
|
|
|
|
|
micro-revision.i: FORCE
|
2007-05-01 03:36:32 +02:00
|
|
|
@if test -d ../../.svn -a x`which svn` != x ; then \
|
2007-04-17 01:56:31 +02:00
|
|
|
svn info ../.. | \
|
2007-05-01 15:48:49 +02:00
|
|
|
sed -n 's/^Revision: \([0-9][0-9]*\).*/"\1"/p' > micro-revision.tmp \
|
2007-04-18 21:28:47 +02:00
|
|
|
|| true; \
|
2007-05-02 21:13:15 +02:00
|
|
|
elif test x`which svk` != x && test -d ~/.svk; then \
|
2007-04-17 23:16:40 +02:00
|
|
|
location=../..; \
|
|
|
|
rev=x; \
|
2007-04-18 21:28:47 +02:00
|
|
|
while test x$$rev = xx; do \
|
|
|
|
x=`svk info $$location | \
|
2007-04-17 23:16:40 +02:00
|
|
|
sed -n 's/^Mirrored From:.*, Rev\. \([0-9][0-9]*\)/\1/p'`; \
|
2007-04-18 21:28:47 +02:00
|
|
|
if test x$$x != x; then \
|
|
|
|
rev=$$x; \
|
2007-04-17 23:16:40 +02:00
|
|
|
break; \
|
|
|
|
else \
|
2007-04-18 21:28:47 +02:00
|
|
|
loc=`svk info $$location | \
|
2007-04-17 23:16:40 +02:00
|
|
|
sed -n 's/^Copied From: \(.*\), Rev\. [0-9][0-9]*/\1/p'`; \
|
2007-04-18 21:28:47 +02:00
|
|
|
if test x$$loc = x; then \
|
2007-04-17 23:16:40 +02:00
|
|
|
break; \
|
|
|
|
else \
|
2007-04-18 21:28:47 +02:00
|
|
|
location=/$$loc; \
|
2007-04-17 23:16:40 +02:00
|
|
|
fi; \
|
|
|
|
fi; \
|
|
|
|
done; \
|
2007-04-18 21:28:47 +02:00
|
|
|
if test x$$rev != x; then \
|
2007-05-01 15:48:49 +02:00
|
|
|
echo \"$$rev\" > micro-revision.tmp; \
|
2007-04-18 21:28:47 +02:00
|
|
|
fi; \
|
2007-04-17 23:16:40 +02:00
|
|
|
fi; \
|
2007-05-07 19:11:53 +02:00
|
|
|
if test ! -f micro-revision.tmp ; then \
|
|
|
|
if test ! -f micro-revision.i ; then \
|
|
|
|
echo '""' > micro-revision.i; \
|
|
|
|
fi; \
|
|
|
|
elif test ! -f micro-revision.i || \
|
2007-05-02 21:13:15 +02:00
|
|
|
test "`cat micro-revision.tmp`" != "`cat micro-revision.i`"; then \
|
2007-05-01 15:48:49 +02:00
|
|
|
mv micro-revision.tmp micro-revision.i; \
|
2007-04-17 01:56:31 +02:00
|
|
|
fi
|
|
|
|
|
2007-05-01 15:48:49 +02:00
|
|
|
#Dummy target to ensure that micro-revision.i _always_ gets built.
|
2007-04-17 01:56:31 +02:00
|
|
|
FORCE:
|