A big NOOP
[fw/sdcc] / doc / Makefile
index a715ec29bdee8e88c41799ef6912523d1bd0cd3d..f3f765d2d67db3e3f5e9ad19f40ef1478c580c60 100644 (file)
@@ -8,23 +8,30 @@ all: $(MANUAL).html $(MANUAL).pdf $(MANUAL).txt \
 
 install:
        $(INSTALL) -d $(docdir)
-       cp -rf *.html *.txt *.pdf $(MANUAL).html $(TSS).html z80 avr $(docdir)
+       cp -rf *.html *.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 *.pdf          ]; then cp -rf *.pdf          $(docdir); fi)
 
 uninstall:
        rm -rf $(docdir)
 
 
 $(MANUAL).html: $(MANUAL).tex $(MANUAL).ind ;#$(MANUAL).glo
+       mkdir -p $@
        latex2html -split 5 -show_section_numbers -dir $(MANUAL).html $(MANUAL)
 
 $(TSS).html: $(TSS).tex
+       mkdir -p $@
        latex2html -split 0 -dir $(TSS).html $(TSS)
 
 %.txt: %.lyx
        lyx -e text $<
+       sed s/---/--/ $@ > $*.tmp
+       mv $*.tmp $@
 
-%.pdf: %.dvi
-       pdflatex $*
+%.pdf: %.tex %.dvi
+       which pdflatex > /dev/null && pdflatex $* || dvipdf $*
 
 %.dvi: %.tex
        latex $<
@@ -39,14 +46,4 @@ $(TSS).html: $(TSS).tex
        # the glossary, not implemented yet
        # makeindex -s l2hglo.ist -o $@ $<
 
-
-clean:
-       # remove intermediate file, not the final pdf's and html's
-       # because these are needed for the distribution
-       rm -rf *.tex *.aux *.dvi *.idx *.ilg *.ind *.log *.toc *~ \#* \
-               *.ps */*.css */*.pl *.gif core
-
-superclean:
-       $(MAKE) clean
-       # now get rid of the generated pdf's and html's as well
-       rm -rf *.pdf $(MANUAL).html $(TSS).html
\ No newline at end of file
+include clean.mk