commit d73d374f23c4be5b0ca2fccacfb34f847e2e8566 Author: George Kadianakis desnacked@gmail.com Date: Sat Aug 20 06:41:23 2011 +0200
You will probably want a Makefile for all this as well. --- Makefile.am | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/Makefile.am b/Makefile.am index eb35e15..1be20d1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,6 +12,9 @@ noinst_PROGRAMS = unittests libobfsproxy_a_SOURCES = \ src/container.c \ src/crypt.c \ + src/external.c \ + src/main.c \ + src/managed.c \ src/network.c \ src/protocol.c \ src/socks.c \ @@ -22,8 +25,7 @@ if NEED_SHA256 libobfsproxy_a_SOURCES += src/sha256.c endif
-obfsproxy_SOURCES = \ - src/main.c +obfsproxy_SOURCES = src/obfs_main.c
unittests_SOURCES = \ src/test/tinytest.c \ @@ -32,13 +34,16 @@ unittests_SOURCES = \ src/test/unittest_crypt.c \ src/test/unittest_socks.c \ src/test/unittest_dummy.c \ + src/test/unittest_managed.c \ src/test/unittest_obfs2.c
noinst_HEADERS = \ src/container.h \ src/crypt.h \ + src/external.h \ src/ht.h \ src/main.h \ + src/managed.h \ src/network.h \ src/protocol.h \ src/sha256.h \
tor-commits@lists.torproject.org