Update of /cvsroot/pythonreports/PythonReports/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29440
Modified Files:
Makefile
Log Message:
added upload target
Index: Makefile
===================================================================
RCS file: /cvsroot/pythonreports/PythonReports/doc/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Makefile 31 Oct 2006 19:57:18 -0000 1.1
--- Makefile 1 Nov 2006 12:11:23 -0000 1.2
***************
*** 2,5 ****
--- 2,6 ----
# History (most recent first):
+ # 01-nov-2006 [als] added upload target
# 10-jul-2006 [als] rst2html arguments changed for docutils-0.4
# (embed-stylesheet is now default,
***************
*** 12,15 ****
--- 13,17 ----
#
+ UPLOAD_PATH = a1...@sh...:/home/groups/p/py/pythonreports/htdocs/
STXTOHTML = python E:\\Python24\\Scripts\\rst2html.py \
--stylesheet-path=default.css
***************
*** 21,24 ****
--- 23,29 ----
all: ${HTMLS}
+ upload: ${HTMLS}
+ scp $^ ${UPLOAD_PATH}
+
%.html: %.txt default.css
${STXTOHTML} --report=warning -d $< $@
|