1 # This file is part of statist 2 # 3 # It is Free Software distributed under the GNU General Public License v>=2. 4 # See the file COPYING for details. 5 # 6 # Author: 2005 Jakson Alves de Aquino <jakson.alves at ig.com.br>, 2005 7 8 include ../Makefile.inc 9 10 MANDIR = $(PREFIX)/share/man/man1 11 12 .PHONY : all pdf install halfclean clean 13 14 all: pdf 15 16 17 pdf: programm.pdf stat_man.pdf manual-en.pdf manual-pt.pdf 18 19 boxplot-en.pdf: boxplot-en.fig 20 fig2dev -L pdf boxplot-en.fig boxplot-en.pdf 21 22 boxplot-pt.pdf: boxplot-pt.fig 23 fig2dev -L pdf boxplot-pt.fig boxplot-pt.pdf 24 25 stat_man.pdf: stat_man.tex 26 latex stat_man 27 bibtex stat_man 28 latex stat_man 29 latex stat_man 30 dvipdfm stat_man 31 32 programm.pdf: programm.tex 33 pdflatex programm 34 pdflatex programm 35 36 manual-en.pdf: manual-en.tex boxplot-en.pdf 37 pdflatex manual-en 38 pdflatex manual-en 39 40 manual-pt.pdf: manual-pt.tex boxplot-pt.pdf 41 pdflatex manual-pt 42 pdflatex manual-pt 43 44 install: stat_man.pdf manual-en.pdf manual-pt.pdf 45 install -d $(DOCDIR)/examples 46 install -d $(MANDIR) 47 cp -p statistrc $(DOCDIR)/sample.statistrc 48 cp -p stat_man.pdf $(DOCDIR) 49 cp -p manual-en.pdf $(DOCDIR) 50 cp -p manual-pt.pdf $(DOCDIR) 51 cp -p statist.1 $(MANDIR) 52 cp -p ../CHANGES $(DOCDIR) 53 cp -p ../COPYING $(DOCDIR) 54 cp -p ../KNOWN_BUGS $(DOCDIR) 55 cp -p ../README $(DOCDIR) 56 cp -p ../CREDITS $(DOCDIR) 57 (cd ../examples; cp -p *.dat *.labels README $(DOCDIR)/examples) 58 59 uninstall: 60 -rm $(DOCDIR)/sample.statistrc 61 -rm $(DOCDIR)/stat_man.pdf 62 -rm $(DOCDIR)/manual-en.pdf 63 -rm $(DOCDIR)/manual-pt.pdf 64 -rm $(MANDIR)/statist.1 65 -rm $(DOCDIR)/CHANGES 66 -rm $(DOCDIR)/COPYING 67 -rm $(DOCDIR)/KNOWN_BUGS 68 -rm $(DOCDIR)/README 69 -rm $(DOCDIR)/CREDITS 70 -rm $(DOCDIR)/examples/*.dat 71 -rm $(DOCDIR)/examples/*.labels 72 -rm $(DOCDIR)/examples/README 73 -rmdir $(DOCDIR)/examples 74 -rmdir $(DOCDIR) 75 76 clean: 77 -rm *.log *.toc *.aux *.bbl *.blg *.dvi *.eps 78 79 reallyclean: 80 -rm *.log *.toc *.aux *.bbl *.blg *.dvi *.eps *.pdf