]> www.ginac.de Git - cln.git/blob - doc/ratseries/paper/Makefile.devel
* include/cln/modules.h (CL_CONCATENATE): New macro.
[cln.git] / doc / ratseries / paper / Makefile.devel
1 # How to use the Makefile
2 #
3 # LATEX, BIBTEX, DVIPS, RM, GZIP and UUENCODE are configuration
4 # variables which you can change to point to the appropriate
5 # location on your system. You do not need to change anything else.
6 #
7 LATEX=latex
8 BIBTEX=bibtex
9 DVIPS=dvips -D600
10 RM=rm -f
11 GZIP=gzip
12 UUENCODE=uuencode
13
14 # `make' creates binsplit.dvi and binsplit.ps
15 #
16 all:    binsplit.dvi binsplit.ps
17
18 # `make binsplit.dvi' creates binsplit.dvi
19 #
20 binsplit.dvi:   binsplit.tex binsplit.bib
21         $(LATEX) binsplit.tex
22         $(BIBTEX) binsplit
23         $(LATEX) binsplit.tex
24         $(LATEX) binsplit.tex
25
26 # `make binsplit.ps' creates binsplit.ps
27 #
28 binsplit.ps:    binsplit.dvi
29         $(DVIPS) -o binsplit.ps binsplit.dvi
30
31 # `make clean' removes all redundant files produced by LaTeX and BibTeX 
32 #
33 clean:
34         -$(RM) *.aux *.log *.toc *.idx *.lof *.lot *.bbl *.blg
35
36 # Do not type the quotes!
37 #
38 # End of Help