X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=doc%2FMakefile;h=ff9e733788e07bdcc6546a1a6c9db6c8d79ec5e5;hb=5a17b119c126668c343eccb90fc1a7478de9267a;hp=6c3970440944bbff58bee29a415148b28691577f;hpb=edc1d640b42f044ad97e840437c094ca78c2e68a;p=fw%2Fsdcc diff --git a/doc/Makefile b/doc/Makefile index 6c397044..ff9e7337 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -2,13 +2,19 @@ include ../Makefile.common MANUAL = sdccman TSS = test_suite_spec +CDB = cdbfileformat all: $(MANUAL).html $(MANUAL).pdf $(MANUAL).txt \ - $(TSS).html $(TSS).pdf $(TSS).txt + $(TSS).html $(TSS).pdf $(TSS).txt \ + $(CDB).html $(CDB).pdf $(CDB).txt install: $(INSTALL) -d $(docdir) - cp -rf *.html *.txt *.pdf $(MANUAL).html $(TSS).html z80 avr $(docdir) + cp -rf *.txt z80 avr $(docdir) + $(shell if [ -f $(MANUAL).html ]; then cp -rf $(MANUAL).html $(docdir); fi) + $(shell if [ -f $(TSS).html ]; then cp -rf $(TSS).html $(docdir); fi) + $(shell if [ -f $(CDB).html ]; then cp -rf $(CDB).html $(docdir); fi) + $(shell if [ -f *.pdf ]; then cp -rf *.pdf $(docdir); fi) uninstall: rm -rf $(docdir) @@ -16,11 +22,33 @@ uninstall: $(MANUAL).html: $(MANUAL).tex $(MANUAL).ind ;#$(MANUAL).glo mkdir -p $@ - latex2html -split 5 -show_section_numbers -dir $(MANUAL).html $(MANUAL) + # fixes latex2html problems with two consecutive dashes for long-options: --stack-auto + # fixes latex2html problems with \tabularnewline + mv $< `basename $< .tex`.orig.tex + sed 's,-\\/-,-\\/-\\/-,g' < `basename $< .tex`.orig.tex | \ + sed 's,\\tabularnewline$$,\\\\,g' > $< + -latex2html -split 5 -show_section_numbers -dir $(MANUAL).html $(MANUAL) + mv `basename $< .tex`.orig.tex $< $(TSS).html: $(TSS).tex mkdir -p $@ - latex2html -split 0 -dir $(TSS).html $(TSS) + # fixes latex2html problems with two consecutive dashes for long-options: --stack-auto + # fixes latex2html problems with \tabularnewline + mv $< `basename $< .tex`.orig.tex + sed 's,-\\/-,-\\/-\\/-,g' < `basename $< .tex`.orig.tex | \ + sed 's,\\tabularnewline$$,\\\\,g' > $< + -latex2html -split 0 -dir $(TSS).html $(TSS) + mv `basename $< .tex`.orig.tex $< + +$(CDB).html: $(CDB).tex + mkdir -p $@ + # fixes latex2html problems with two consecutive dashes for long-options: --stack-auto + # fixes latex2html problems with \tabularnewline + mv $< `basename $< .tex`.orig.tex + sed 's,-\\/-,-\\/-\\/-,g' < `basename $< .tex`.orig.tex | \ + sed 's,\\tabularnewline$$,\\\\,g' > $< + -latex2html -split 0 -show_section_numbers -dir $(CDB).html $(CDB) + mv `basename $< .tex`.orig.tex $< %.txt: %.lyx lyx -e text $< @@ -41,24 +69,4 @@ $(TSS).html: $(TSS).tex # the glossary, not implemented yet # makeindex -s l2hglo.ist -o $@ $< -# Deleting all files created by building the program -# -------------------------------------------------- -clean: -# The directories are still in CVS, so don't delete them -# rm -rf $(MANUAL).html $(TSS).html - rm -f $(MANUAL).html/* $(TSS).html/* - rm -f $(MANUAL).txt $(TSS).txt *.pdf *.dvi *.tex *.ind *.glo *.aux *.idx *.ilg *.log *.toc - -# Deleting all files created by configuring or building the program -# ----------------------------------------------------------------- -distclean: clean - -# Like clean but some files may still exist -# ----------------------------------------- -mostlyclean: clean - -# Deleting everything that can reconstructed by this Makefile. It deletes -# everything deleted by distclean plus files created by bison, etc. -# ----------------------------------------------------------------------- -realclean: distclean - +include clean.mk