X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=Makefile;h=9450318a2ccefe23bcde2a0b5268d1e964be6b15;hp=570d4c70e9efd42a83940fd7e2ec4943d79560cf;hb=dcf2c2df897955ff3503a7c426025457ab456fd7;hpb=8350dd34c88cc0c336fdc33d642320dde1e942f7 diff --git a/Makefile b/Makefile index 570d4c7..9450318 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,26 @@ -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 +SRC_IMG = $(wildcard img/*.dia) +PS_IMG = $(SRC_IMG:.dia=.ps) +EPS_IMG = $(SRC_IMG:.dia=.eps) +PDF_IMG = $(SRC_IMG:.dia=.pdf) +SRC = $(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) +VARIE = README ChangeLog *.sh htgapil.cfg tex4ht.env htgapil/* html/*.html +ALL_SRC = $(SRC_IMG) $(SRC) *.tex Makefile $(VARIE) *.bib $(CODE_C) $(CODE_H) -all: $(PDF_IMG) gapil.tgz htm +all: $(PDF_IMG) $(HTML_C) $(HTML_H) -$(PDF_IMG): %.pdf: %.ps - epstopdf $< --outfile=$@ +$(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: %.eps + GS_OPTIONS="-dAutoRotatePages=/None" epstopdf $< --outfile=$@ $(PS_IMG): %.ps : %.eps eps2eps $< $@ @@ -16,13 +28,11 @@ $(PS_IMG): %.ps : %.eps $(EPS_IMG): %.eps : %.dia dia --nosplash -e $@ $< -gapil.tgz: $(SOURCE) sources/Makefile +gapil_source.tgz: $(SRC) tar -cvz -f $@ $^ -htm: *.tex - latex2html -local_icons -no_math -no_footnode gapil.tex - scp -r gapil/* piccardi@firenze.linux.it:public_html/gapil/html - scp gapil.p* piccardi@firenze.linux.it:public_html/gapil/ +gapil.tgz: $(ALL_SRC) + tar -cvz -f $@ $^ gapil.dvi: *.tex latex gapil.tex @@ -33,11 +43,13 @@ gapil.pdf: *.tex gapil.ps: gapil.dvi dvips -o gapil.ps gapil.dvi -install: - scp -r gapil.p* piccardi@firenze.linux.it:public_html/gapil - scp -r gapil/* piccardi@firenze.linux.it:public_html/gapil/html +install: gapil.pdf gapil.dvi + scp gapil.p* gapil_source.* piccardi@firenze.linux.it:public_html/gapil scp html/*.html piccardi@firenze.linux.it:public_html/gapil/ + scp gapil.p* gapil_source.tgz root@truelite.it:/var/www/gapil + scp html/*.html root@truelite.it:/var/www/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/*.eps img/*.pdf