[Assorted-commits] SF.net SVN: assorted: [739] personal-site/trunk/Makefile
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-05-08 19:21:29
|
Revision: 739 http://assorted.svn.sourceforge.net/assorted/?rev=739&view=rev Author: yangzhang Date: 2008-05-08 12:21:30 -0700 (Thu, 08 May 2008) Log Message: ----------- added processing of links.txt; fixed omitted footer; added some more redirection sites Modified Paths: -------------- personal-site/trunk/Makefile Modified: personal-site/trunk/Makefile =================================================================== --- personal-site/trunk/Makefile 2008-05-08 19:20:48 UTC (rev 738) +++ personal-site/trunk/Makefile 2008-05-08 19:21:30 UTC (rev 739) @@ -23,12 +23,14 @@ $(INDEX): $(DARK) ln -sf plain.html $(INDEX) -$(PLAIN): src/index.txt src/header.html out src/footer.html src/recommendations.txt - pandoc -s -S --tab-stop=2 -H src/header.html src/index.txt \ +$(PLAIN): src/index.txt src/header.html out src/footer.html src/recommendations.txt src/links.txt + pandoc -s -S --tab-stop=2 -H src/header.html -A src/footer.html src/index.txt \ -c plain.css | \ $(MUNGEMAIL) > $(PLAIN) - pandoc -s -S --tab-stop=2 -H src/header.html src/recommendations.txt \ + pandoc -s -S --tab-stop=2 -H src/header.html -A src/footer.html src/recommendations.txt \ -c plain.css -o out/recommendations.html + pandoc -s -S --tab-stop=2 -H src/header.html -A src/footer.html src/links.txt \ + -c plain.css -o out/links.html $(DARK): src/index.txt src/header.html src/dark-prologue.html src/dark-epilogue.html out pandoc -s -S --tab-stop=2 -H src/header.html src/index.txt \ @@ -43,6 +45,8 @@ scp $(REDIR) ocf:public_html/ scp $(REDIR) pdos:public_html/ scp $(REDIR) lin:web_scripts/ + scp $(REDIR) nms:public_html/ + scp $(REDIR) hv:public_html/ clean: rm -rf out This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |