Update of /cvsroot/nice/Nice/web
In directory sc8-pr-cvs1:/tmp/cvs-serv5687/web
Modified Files:
Makefile
Log Message:
Do not keep webpages if the transformation was not successful.
Index: Makefile
===================================================================
RCS file: /cvsroot/nice/Nice/web/Makefile,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** Makefile 9 Aug 2003 21:44:35 -0000 1.13
--- Makefile 9 Dec 2003 17:26:03 -0000 1.14
***************
*** 36,40 ****
%.html: %.xml new.xsl
! $(PROC) new.xsl $*.xml > $@
# Old style
--- 36,40 ----
%.html: %.xml new.xsl
! if ! $(PROC) new.xsl $*.xml > $@; then rm $@; fi
# Old style
|