Peter Palfrader commited on 2012-02-17 17:50:37
Zeige 3 geänderte Dateien mit 15 Einfügungen und 1 Löschungen.
... | ... |
@@ -0,0 +1 @@ |
1 |
+/Makefile.local |
... | ... |
@@ -10,12 +10,12 @@ |
10 | 10 |
# 4. make |
11 | 11 |
# 5. ./publish |
12 | 12 |
|
13 |
-export TORGIT=set this to your tor.git path |
|
14 | 13 |
export STABLETAG=tor-0.2.2.35 |
15 | 14 |
export DEVTAG=tor-0.2.3.12-alpha |
16 | 15 |
|
17 | 16 |
WMLBASE=. |
18 | 17 |
SUBDIRS=docs eff projects press about download getinvolved donate torbutton |
18 |
+include $(WMLBASE)/Makefile.local |
|
19 | 19 |
|
20 | 20 |
include $(WMLBASE)/Makefile.common |
21 | 21 |
all: $(SUBDIRS) |
... | ... |
@@ -0,0 +1,13 @@ |
1 |
+# This is a sample for your Makefile.local. |
|
2 |
+# |
|
3 |
+# Copy this to Makefile.local and change the path to match your local |
|
4 |
+# system. |
|
5 |
+# |
|
6 |
+ |
|
7 |
+# The path to a clone of the tor source code repository's .git dir. |
|
8 |
+# Note that if your clone is a non-bare repository that you must not |
|
9 |
+# leave out the .git part. |
|
10 |
+# |
|
11 |
+# e.g.: |
|
12 |
+# export TORGIT=/home/weasel/projects/tor/tor/.git |
|
13 |
+export TORGIT=set this to your tor.git path |
|
0 | 14 |