diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-04-17 02:24:55 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-04-17 02:24:55 +0000 |
commit | 6fd4f2a17f9dc329240734ea99f6f608b28b5fc8 (patch) | |
tree | 25a3d8a52eda265d84763cb9e2960eab3e57a130 | |
parent | 598c3069e15b23845aa1b15327429ce5cf925b66 (diff) | |
download | tor-6fd4f2a17f9dc329240734ea99f6f608b28b5fc8.tar tor-6fd4f2a17f9dc329240734ea99f6f608b28b5fc8.tar.gz |
Rebuild or and test binaries when a libor.a changes but or/*.c does not.
svn:r247
-rw-r--r-- | src/or/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/Makefile.am b/src/or/Makefile.am index 9f25c91c4..e1092f418 100644 --- a/src/or/Makefile.am +++ b/src/or/Makefile.am @@ -9,14 +9,14 @@ or_SOURCES = buffers.c circuit.c command.c connection.c \ onion.c routers.c directory.c dns.c connection_edge.c \ main.c tor_main.c -or_LDADD = -L../common -lor -lz +or_LDADD = ../common/libor.a -lz test_SOURCES = buffers.c circuit.c command.c connection.c \ connection_exit.c connection_ap.c connection_op.c connection_or.c config.c \ onion.c routers.c directory.c dns.c connection_edge.c \ main.c test.c -test_LDADD = -L../common -lor -lz +test_LDADD = ../common/libor.a -lz noinst_HEADERS = or.h tree.h |