Ripulitura dell'HTML, tanto per vedere se ci capisco qualcosa di XHTML & C.
[gapil.git] / Makefile
index 21ca364552ebcad4e4ce600b5fbd77bd18a97922..a6a12e61889e38ba04174ede07fc04c91ff72c9b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,21 +1,51 @@
-all: html dvi ps pdf img
+SOURCE_IMG = $(wildcard img/*.dia)
+PS_IMG = $(SOURCE_IMG:.dia=.ps)
+EPS_IMG = $(SOURCE_IMG:.dia=.eps)
+PDF_IMG = $(SOURCE_IMG:.dia=.pdf)
+SOURCE =  $(wildcard sources/*.c) $(wildcard sources/*.h) sources/Makefile
+CODE_C =  $(wildcard listati/*.c) 
+CODE_H =  $(wildcard listati/*.h)
+HTML_C =  $(CODE_C:.c=.c.html) 
+HTML_H =  $(CODE_H:.h=.h.html) 
 
-html:
-       latex2html -local_icons -no_math -no_footnode gapil.tex
+all: $(PDF_IMG) gapil.tgz $(HTML_C) $(HTML_H) #htm 
 
-dvi: 
+$(HTML_C):  %.c.html: %.c
+       source-highlight -f html -s cpp $<
+
+$(HTML_H):  %.h.html: %.h
+       source-highlight -f html -s cpp $<
+
+$(PDF_IMG): %.pdf: %.ps
+       epstopdf $< --outfile=$@
+
+$(PS_IMG): %.ps : %.eps
+       eps2eps $< $@ 
+
+$(EPS_IMG): %.eps : %.dia
+       dia --nosplash -e $@ $< 
+
+gapil.tgz: $(SOURCE) sources/Makefile
+       tar -cvz -f $@ $^
+
+htm: *.tex
+       scp -r gapil/* piccardi@firenze.linux.it:public_html/gapil/html
+       scp gapil.p* piccardi@firenze.linux.it:public_html/gapil/
+
+gapil.dvi:  *.tex
        latex gapil.tex
 
-pdf: 
+gapil.pdf:  *.tex
        pdflatex gapil.tex
 
-ps: 
+gapil.ps: gapil.dvi 
        dvips -o gapil.ps gapil.dvi
 
 install:
-       scp -r gapil*  piccardi@firenze.linux.it:public_html
-
+       scp -r gapil.p*  piccardi@firenze.linux.it:public_html/gapil
+       scp -r gapil/*  piccardi@firenze.linux.it:public_html/gapil/html
+       scp html/*.html piccardi@firenze.linux.it:public_html/gapil/
 clean: 
        rm -f *.dvi *.log *.ps *.html *.aux *.toc *.rel *.ilg *.rip *.ind \
-       *.pdf  *.out *.idx *~
+       *.pdf  *.out *.idx *~ listati/*.html img/*.ps img/*.pdf