Author: dylan
Date: 2005-01-08 20:17:15 -0500 (Sat, 08 Jan 2005)
New Revision: 554
Modified:
trunk/web/Makefile
trunk/web/README
Log:
README has been updated a bit...
Modified: trunk/web/Makefile
===================================================================
--- trunk/web/Makefile 2005-01-09 01:16:13 UTC (rev 553)
+++ trunk/web/Makefile 2005-01-09 01:17:15 UTC (rev 554)
@@ -65,13 +65,14 @@
clean:
rm -vf $(targets)
-validate: $(html)
+validate: test
+ @echo "use make test from now on"
+
+test: $(html)
@$(VALIDATE) $(html)
-test: validate
-
%.html: %.thtml $(DEPENDS)
@echo "TT $<"
@$(TT) $(TTFLAGS) $< > $@
Modified: trunk/web/README
===================================================================
--- trunk/web/README 2005-01-09 01:16:13 UTC (rev 553)
+++ trunk/web/README 2005-01-09 01:17:15 UTC (rev 554)
@@ -1,7 +1,7 @@
We require a few standard tools to build the haver website:
* perl
- * Time::Piece
- * Image::Size
+ * Time::Piece (libtime-piece-perl)
+ * Image::Size (libimage-size-perl)
* Template Toolkit, from CPAN as Template. (libtemplate-perl)
* XML::DOM (libxml-dom-perl)
* validate (wdg-html-validator) or xmllint
@@ -12,13 +12,13 @@
to build the entire site, just type "make build".
-To validate all the html pages, type "make validate".
+To validate all the html pages, type "make test".
Finally, to upload (to source forge), first make sure you're part of the haver
group on Source Forge,
and second, put your sf user name in ~/.sfuser. Then just type "make upload".
Whenever you edit anything, make sure to svn commit. After svn commit,
-make build (or make file.html for a single file), make validate, and make
upload.
+make build (or make file.html for a single file), make test, and make upload.
If you have pperl installed, you can increase the speed with which the site is
built via:
make FAST=1 build