Update of /cvsroot/pythonreports/PythonReports/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1151
Modified Files:
Makefile
Log Message:
build htmls for toplevel documents too;
don't include generation timestamp
Index: Makefile
===================================================================
RCS file: /cvsroot/pythonreports/PythonReports/doc/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile 1 Nov 2006 12:11:23 -0000 1.2
--- Makefile 3 Nov 2006 16:11:58 -0000 1.3
***************
*** 2,5 ****
--- 2,7 ----
# History (most recent first):
+ # 03-nov-2006 [als] build htmls for toplevel documents too;
+ # don't include generation timestamp
# 01-nov-2006 [als] added upload target
# 10-jul-2006 [als] rst2html arguments changed for docutils-0.4
***************
*** 20,32 ****
HTMLS = $(SOURCE:.txt=.html)
! all: ${HTMLS}
upload: ${HTMLS}
scp $^ ${UPLOAD_PATH}
- %.html: %.txt default.css
- ${STXTOHTML} --report=warning -d $< $@
-
clean:
! rm -f ${HTMLS}
--- 22,40 ----
HTMLS = $(SOURCE:.txt=.html)
+ ALL_HTMLS = $(HTMLS) README.html CHANGES.html
! all: ${ALL_HTMLS}
!
! build: ${ALL_HTMLS}
upload: ${HTMLS}
scp $^ ${UPLOAD_PATH}
clean:
! -rm ${ALL_HTMLS} 2> /dev/null
!
! %.html: ../% default.css
! ${STXTOHTML} --report=warning $< $@
!
! %.html: %.txt default.css
! ${STXTOHTML} --report=warning $< $@
|