make the torvm stuff build
Roger Dingledine

Roger Dingledine commited on 2008-08-01 20:49:00
Zeige 3 geänderte Dateien mit 6 Einfügungen und 2 Löschungen.

... ...
@@ -11,7 +11,7 @@ TORSVNHEAD = ../tor
11 11
 #TORSVNHEAD = /home/arma/work/onion/svn/trunk
12 12
 
13 13
 WMLBASE = .
14
-SUBDIRS=docs eff gui torbrowser torbutton tordnsel projects
14
+SUBDIRS=docs eff gui torbrowser torbutton tordnsel projects torvm
15 15
 
16 16
 include $(WMLBASE)/Makefile.common
17 17
 all: $(SUBDIRS)
... ...
@@ -30,10 +30,12 @@ tordnsel:
30 30
 	$(MAKE) -C "$@" WMLBASE=..
31 31
 projects:
32 32
 	$(MAKE) -C "$@" WMLBASE=..
33
+torvm:
34
+	$(MAKE) -C "$@" WMLBASE=..
33 35
 mirrors:
34 36
 	./update-mirrors.pl
35 37
 
36 38
 # XXX: this also depends on all subs' wmlfiles.  How to fix?
37 39
 translation-status.html.en: $(LANGS) $(WMIFILES) $(WMLFILES)
38 40
 
39
-.PHONY: docs eff gui torbrowser torbutton tordnsel projects
41
+.PHONY: docs eff gui torbrowser torbutton tordnsel projects torvm
... ...
@@ -202,6 +202,7 @@ do_status(%table_rows, 'torbrowser', 1);
202 202
 do_status(%table_rows, 'torbutton', 1);
203 203
 do_status(%table_rows, 'tordnsel', 1);
204 204
 do_status(%table_rows, 'projects', 1);
205
+do_status(%table_rows, 'torvm', 1);
205 206
 #do_status(%table_data, 'eff', 1);
206 207
 #do_status(%table_data, 'gui', 1);
207 208
 sort_and_print(%table_rows);
... ...
@@ -0,0 +1 @@
1
+include $(WMLBASE)/Makefile.common
0 2