blob: d363063c177d1a325e6238b04c938d242f9eb538 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#
#
# This file is in public domain
#
# $Id$
#
PACKAGE=fitbox
SAMPLES = sample.tex sample-subfigure.tex
all: $(PACKAGE).pdf ${SAMPLES:%.tex=%.pdf}
%.pdf: %.dtx $(PACKAGE).sty
pdflatex $<
- bibtex $*
pdflatex $<
- makeindex -s gind.ist -o $*.ind $*.idx
- makeindex -s gglo.ist -o $*.gls $*.glo
pdflatex $<
while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \
do pdflatex $<; done
%.sty: %.ins %.dtx
pdflatex $<
%.pdf: %.tex $(PACKAGE).sty
pdflatex $*
-bibtex $*
pdflatex $*
while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \
do pdflatex $*; done
.PRECIOUS: $(PACKAGE).cfg $(PACKAGE).sty
clean:
$(RM) $(PACKAGE).sty *.log *.aux \
*.cfg *.glo *.idx *.toc \
*.ilg *.ind *.out *.lof \
*.lot *.bbl *.blg *.gls *.hd \
*.dvi *.ps *.tgz *.zip *.brf
veryclean: clean
$(RM) $(PACKAGE).pdf ${SAMPLES:%.tex=%.pdf}
distclean: veryclean
#
# Archive for the distribution. Includes typeset documentation
#
archive: all clean
COPYFILE_DISABLE=1 tar -C .. -czvf ../$(PACKAGE).tgz --exclude '*~' --exclude '*.tgz' --exclude '*.zip' --exclude CVS --exclude '.git*' $(PACKAGE); mv ../$(PACKAGE).tgz .
zip: all clean
${MAKE} $(PACKAGE).sty
$(RM) *.log
zip -r $(PACKAGE).zip * -x '*~' -x '*.tgz' -x '*.zip' -x CVS -x 'CVS/*'
|