2004-02-25 07:41:21 +01:00
|
|
|
bin_PROGRAMS = tor
|
2009-09-22 18:31:15 +02:00
|
|
|
noinst_LIBRARIES = libtor.a
|
2002-06-29 01:26:42 +02:00
|
|
|
|
2007-09-06 19:42:05 +02:00
|
|
|
if BUILD_NT_SERVICES
|
2007-09-15 20:06:23 +02:00
|
|
|
tor_platform_source=ntmain.c
|
2007-09-06 19:42:05 +02:00
|
|
|
else
|
2007-09-12 19:17:03 +02:00
|
|
|
tor_platform_source=
|
2007-09-06 19:42:05 +02:00
|
|
|
endif
|
|
|
|
|
2009-01-04 03:43:05 +01:00
|
|
|
EXTRA_DIST=ntmain.c or_sha1.i
|
2007-09-06 19:42:05 +02:00
|
|
|
|
2009-06-04 07:05:23 +02:00
|
|
|
if USE_EXTERNAL_EVDNS
|
|
|
|
evdns_source=
|
|
|
|
else
|
|
|
|
evdns_source=eventdns.c
|
|
|
|
endif
|
|
|
|
|
2009-09-22 18:31:15 +02:00
|
|
|
libtor_a_SOURCES = buffers.c circuitbuild.c circuitlist.c \
|
2004-05-13 09:24:49 +02:00
|
|
|
circuituse.c command.c config.c \
|
2004-11-03 02:32:26 +01:00
|
|
|
connection.c connection_edge.c connection_or.c control.c \
|
2007-06-03 05:05:10 +02:00
|
|
|
cpuworker.c directory.c dirserv.c dirvote.c \
|
2007-12-17 23:44:11 +01:00
|
|
|
dns.c dnsserv.c geoip.c hibernate.c main.c $(tor_platform_source) \
|
2009-08-24 18:51:33 +02:00
|
|
|
microdesc.c \
|
2008-06-11 02:17:02 +02:00
|
|
|
networkstatus.c onion.c policies.c \
|
|
|
|
reasons.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 \
|
2009-06-04 07:05:23 +02:00
|
|
|
$(evdns_source) config_codedigest.c
|
|
|
|
|
2009-09-22 18:31:15 +02:00
|
|
|
#libtor_a_LIBADD = ../common/libor.a ../common/libor-crypto.a \
|
|
|
|
# ../common/libor-event.a
|
|
|
|
|
|
|
|
|
|
|
|
tor_SOURCES = tor_main.c
|
2002-06-29 01:26:42 +02:00
|
|
|
|
2007-11-04 21:49:02 +01:00
|
|
|
AM_CPPFLAGS = -DSHARE_DATADIR="\"$(datadir)\"" \
|
|
|
|
-DLOCALSTATEDIR="\"$(localstatedir)\"" \
|
|
|
|
-DBINDIR="\"$(bindir)\""
|
|
|
|
|
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@
|
2009-09-22 18:31:15 +02:00
|
|
|
tor_LDADD = ./libtor.a ../common/libor.a ../common/libor-crypto.a \
|
2009-06-04 07:05:23 +02:00
|
|
|
../common/libor-event.a \
|
2010-04-14 16:48:05 +02:00
|
|
|
@TOR_ZLIB_LIBS@ -lm @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@
|
2002-07-09 21:51:41 +02:00
|
|
|
|
2009-09-22 18:31:15 +02:00
|
|
|
noinst_HEADERS = or.h eventdns.h eventdns_tor.h micro-revision.i
|
2002-06-29 01:26:42 +02:00
|
|
|
|
2009-05-08 18:35:36 +02:00
|
|
|
config_codedigest.o: or_sha1.i
|
2009-01-04 03:43:05 +01:00
|
|
|
|
2007-04-17 01:56:31 +02:00
|
|
|
tor_main.o: micro-revision.i
|
|
|
|
|
2007-08-14 15:34:41 +02:00
|
|
|
micro-revision.i: FORCE
|
2009-06-12 19:38:37 +02:00
|
|
|
@rm -f micro-revision.tmp; \
|
|
|
|
if test -d ../../.git && test -x "`which git 2>&1;true`"; then \
|
|
|
|
HASH="`git rev-parse --short=16 HEAD`"; \
|
|
|
|
echo \"$$HASH\" > micro-revision.tmp; \
|
|
|
|
fi; \
|
|
|
|
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-06-01 20:02:41 +02:00
|
|
|
test x"`cat micro-revision.tmp`" != x"`cat micro-revision.i`"; then \
|
2009-06-12 19:38:37 +02:00
|
|
|
mv micro-revision.tmp micro-revision.i; \
|
2007-06-01 20:02:41 +02:00
|
|
|
fi; true
|
2007-04-17 01:56:31 +02:00
|
|
|
|
2009-09-22 18:31:15 +02:00
|
|
|
or_sha1.i: $(tor_SOURCES)
|
2009-01-04 03:43:05 +01:00
|
|
|
if test "@SHA1SUM@" != none; then \
|
2009-09-22 18:31:15 +02:00
|
|
|
@SHA1SUM@ $(tor_SOURCES) | @SED@ -n 's/^\(.*\)$$/"\1\\n"/p' > or_sha1.i; \
|
2009-01-04 03:43:05 +01:00
|
|
|
elif test "@OPENSSL@" != none; then \
|
2009-09-22 18:31:15 +02:00
|
|
|
@OPENSSL@ sha1 $(tor_SOURCES) | @SED@ -n 's/SHA1(\(.*\))= \(.*\)/"\2 \1\\n"/p' > or_sha1.i; \
|
2009-01-04 03:43:05 +01:00
|
|
|
else \
|
|
|
|
rm or_sha1.i; \
|
|
|
|
touch or_sha1.i; \
|
|
|
|
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:
|