summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/umlaute/Makefile
blob: 0294981e4526227db8b24249d3af57ad888e2a1d (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
PACKAGE   = umlaute

#################################################################################
#
# Makefile for LaTeX2e packages (1995/01/10)
# -----------------------------
# (c) 1994/95 Axel Sommerfeldt
#
# `make' or `make all' generates the style file (.sty) and documentation (.dvi),
#                      LaTeX2e and MakeIndex are required for this.
#                      If you don't have MakeIndex installed on your system
#                      use `make sty' and `make puredvi' instead.
# `make sty'           generates the style file (.sty)
# `make dvi'           generates the documentation file (.dvi)
# `make install'       puts the style file (.sty) into the CONTRIB directory
# `make clean'         removes all files except the distribution files (.ins + .dtx),
#                      the style file (.sty) and the documentation file (.dvi)
#
################################################################################

LATEX	  = latex
MAKEINDEX = makeindex
CONTRIB   = /usr/local/lib/texmf/tex/contrib

all:		sty dvi

sty:		$(PACKAGE).sty

dvi:		$(PACKAGE).dvi

clean:
		rm *.aux *.drv *.glo *.gls *.idx *.ilg *.ind *.log

install:
		cp $(PACKAGE).sty $(CONTRIB)

uninstall:
		rm $(CONTRIB)/$(PACKAGE).sty

$(PACKAGE).aux:	$(PACKAGE).dtx $(PACKAGE).sty
		$(LATEX) $(PACKAGE).dtx

$(PACKAGE).dvi:	$(PACKAGE).dtx $(PACKAGE).sty $(PACKAGE).aux
		$(LATEX) $(PACKAGE).dtx

$(PACKAGE).ind:	$(PACKAGE).idx
		$(MAKEINDEX) -s gind.ist $(PACKAGE)

$(PACKAGE).idx: $(PACKAGE).dtx $(PACKAGE).sty
		$(LATEX) $(PACKAGE).dtx

$(PACKAGE).gls:	$(PACKAGE).glo
		$(MAKEINDEX) -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo

$(PACKAGE).glo: $(PACKAGE).dtx $(PACKAGE).sty
		$(LATEX) $(PACKAGE).dtx

$(PACKAGE).sty:	$(PACKAGE).ins $(PACKAGE).dtx
		$(LATEX) $(PACKAGE).ins