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
|
# $Id: Makefile,v 1.7 2003/06/22 09:23:35 m Rel $
NAME=soul
ARCHNAME=$(NAME).tar.gz
ARCHIVE=$(NAME).dtx Makefile $(NAME).txt $(NAME).ins
MAKEIDXOPT=
DVIPSOPT=#-Pcmz -Pamz
DEP=$(NAME).sty
all: $(NAME).sty $(NAME).ps
print: $(NAME).ps
psbook $(NAME).ps|psnup -2|psselect -e|lpr
@ echo -n revert paper stack and hit return
@ read key
psbook $(NAME).ps|psnup -2|psselect -o -r|lpr
ps: $(NAME).ps
%.ps: %.dvi
dvips $(DVIPSOPT) $< -o $@
hyper: $(NAME).dtx $(NAME).sty
pdflatex "\relax\let\makehyperref\active\input $(NAME).dtx"
$(NAME).pdf: $(NAME).dtx $(NAME).sty
pdflatex $(NAME).dtx
archive:
@ tar -czf $(ARCHNAME) $(ARCHIVE)
@ echo $(ARCHNAME)
clean:
rm -f $(NAME).{log,toc,lot,lof,idx,ilg,ind,aux,blg,bbl,dvi,ins,out}
distclean: clean
rm -f $(NAME).{ps,sty,pdf} $(ARCHNAME)
REFWARN = 'Rerun to get cross-references'
LATEXMAX = 5
%.dvi: %.dtx $(DEP)
latex $< ; true
RUNS=$(LATEXMAX); \
while [ $$RUNS -gt 0 ] ; do \
if grep $(REFWARN) $*.log > /dev/null; \
then latex $< ; else break; fi; \
RUNS=`expr $$RUNS - 1`; \
done
$(NAME).sty: $(NAME).ins soul.dtx
tex $(NAME).ins
$(NAME).ins:
latex $(NAME).dtx
|