[mcclim-cvs] CVS mcclim/Doc
dlichteblau
dlichteblau at common-lisp.net
Sun Dec 24 12:54:19 UTC 2006
Update of /project/mcclim/cvsroot/mcclim/Doc
In directory clnet:/tmp/cvs-serv27773
Modified Files:
Makefile
Log Message:
- Ddon't hang with errors in texi2dvi
- Split up the "clean" target into "softclean" and "clean", the former
leaves the docstrings in place. Easier for users who don't generate
them those through make.
--- /project/mcclim/cvsroot/mcclim/Doc/Makefile 2006/12/21 12:39:52 1.7
+++ /project/mcclim/cvsroot/mcclim/Doc/Makefile 2006/12/24 12:54:19 1.8
@@ -63,7 +63,7 @@
# DVI generation
%.dvi: %.texi $(DOCFILES) docstrings $(TARGETIMAGES)
- texi2dvi $(I_FLAGS) $<
+ texi2dvi -b $(I_FLAGS) $<
# PDF documentation
.PHONY: pdf
@@ -87,14 +87,19 @@
DOCSTRINGDIR=$(DOCSTRINGDIR) PACKAGES=$(PACKAGES) sh make-tempfiles.sh "$(SBCL_SYSTEM)" && touch tempfiles-stamp
-.PHONY: clean
-clean:
+.PHONY: softclean
+softclean:
rm -f *~ *.bak *.orig \#*\# .\#* texput.log *.fasl
- rm -rf $(HTMLDIRS) $(DOCSTRINGDIR)
+ rm -rf $(HTMLDIRS)
rm -f variables.texi
- rm -f $(PSFILES) $(PDFFILES) html-stamp tempfiles-stamp
+ rm -f $(PSFILES) $(PDFFILES) html-stamp
rm -f $(TMPFILES) $(INDEXFILES)
rm -f mcclim.info mcclim.info-*
+.PHONY: clean
+clean: softclean
+ rm -rf $(DOCSTRINGDIR)
+ rm -f tempfiles-stamp
+
.PHONY: distclean
distclean: clean
More information about the Mcclim-cvs
mailing list