Author: dylan
Date: 2004-12-29 15:55:48 -0500 (Wed, 29 Dec 2004)
New Revision: 461
Modified:
trunk/web/Makefile
Log:
A few makefile fixes.
Modified: trunk/web/Makefile
===================================================================
--- trunk/web/Makefile 2004-12-29 20:36:39 UTC (rev 460)
+++ trunk/web/Makefile 2004-12-29 20:55:48 UTC (rev 461)
@@ -46,19 +46,20 @@
build: $(targets)
-
+
+dist: build
+ $(TAR) $(TARFLAGS) -cjf "dist.tar.bz2" .
+
upload: dist
$(RSYNC) $(RSYNCFLAGS) ./
$(SFUSER)@shell.sourceforge.net:/home/groups/h/ha/haver/htdocs/
-
clean:
rm -vf $(targets)
validate: $(html)
$(VALIDATE) $(html)
-dist: build
- $(TAR) $(TARFLAGS) -cjf "dist.tar.bz2" .
+test: validate
@@ -76,9 +77,6 @@
@$(TT) $(TTFLAGS) $< > $@
-fast:
- make FAST=1
-
ifdef FAST
stop:
pperl -k $(TT_PATH)
@@ -86,4 +84,4 @@
endif
.SUFFIXES:
-.PHONY: build upload clean realclean check fullcheck dist stop validate fast
+.PHONY: build upload clean realclean dist stop validate test