summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2002-06-29 03:01:49 +0000
committerRoger Dingledine <arma@torproject.org>2002-06-29 03:01:49 +0000
commitdcc9fa865753626e365563f52d2104702c304eb2 (patch)
tree8d17b27f2ff3889e93c1d51bbd006047cb7483e9
parent35f90b7820c5de3bf4dde8cbfe1c2f03de473e3b (diff)
downloadtor-dcc9fa865753626e365563f52d2104702c304eb2.tar.gz
tor-dcc9fa865753626e365563f52d2104702c304eb2.zip
./autogen.sh runs auto* and then ./configure
It should be all you need to do to get working Makefiles on your platform, whatever your platform is. :) Let me know if it doesn't generate Makefiles for you. There will still be some bugs to work out in detecting openssl correctly, in checking for only the right header files, etc. But we're on our way. svn:r15
-rwxr-xr-xautogen.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000000..0b1eec9d8a
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+aclocal && autoheader && autoconf && automake
+./configure --enable-debug
+