From: <di...@us...> - 2007-02-04 23:44:53
|
Revision: 376 http://safekeep.svn.sourceforge.net/safekeep/?rev=376&view=rev Author: dimi Date: 2007-02-04 15:44:53 -0800 (Sun, 04 Feb 2007) Log Message: ----------- Be explicit about the page names we have Modified Paths: -------------- website/trunk/Makefile Modified: website/trunk/Makefile =================================================================== --- website/trunk/Makefile 2007-02-04 23:40:34 UTC (rev 375) +++ website/trunk/Makefile 2007-02-04 23:44:53 UTC (rev 376) @@ -6,6 +6,18 @@ SF_SERVER=shell.sourceforge.net SF_HOME=/home/groups/s/sa/safekeep +PAGES = contributing.shtml \ + documentation.shtml \ + download.shtml \ + faq.shtml \ + forums.shtml \ + index.shtml \ + license.shtml \ + motivation.shtml \ + safekeep.conf.html \ + safekeep.html \ + support.shtml + all: help help: @@ -21,10 +33,10 @@ test: test-html test-css test-html: - cd WebContent; for page in *.html *.shtml; do if lynx -source "${HTML_VALID_URL}$$page" | grep -q '${HTML_VALID_OK}'; then echo "$$page: HTML OK"; else echo "$$page: HTML validation failed! ***"; fi; done + cd WebContent; for page in $(PAGES); do if lynx -source "${HTML_VALID_URL}$$page" | grep -q '${HTML_VALID_OK}'; then echo "$$page: HTML OK"; else echo "$$page: HTML validation failed! ***"; fi; done test-css: - cd WebContent; for page in *.html *.shtml; do if lynx -source "${CSS_VALID_URL}$$page" | grep -q '${CSS_VALID_OK}'; then echo "$$page: CSS OK"; else echo "$$page: CSS validation failed! ***"; fi; done + cd WebContent; for page in $(PAGES); do if lynx -source "${CSS_VALID_URL}$$page" | grep -q '${CSS_VALID_OK}'; then echo "$$page: CSS OK"; else echo "$$page: CSS validation failed! ***"; fi; done clean: rm -f WebContent/*~ WebContent/*.bak This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |