blob: 68202db902872a6cbee8f8e7bfedcdfb0b77953f (
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
|
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#%% musixcrd - typsetting chord symbols with %%
#%% musixtex %%
#%% makefile %%
#%% $Id$ %%
#%% copyright 2004 , Robert Hennig %%
#%% this code is licensed in terms of the %%
#%% GNU Public License %%
#%% %%
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SOURCES = readme musixcrd.dtx makefile musixcrd.sty doc.tex strip.tex
TARGETS = readme musixcrd.tex doc.pdf
doc: doc.dvi
strip: musixcrd.tex
srcdist: musixcrdsrc.tgz
dist: musixcrd.tgz
all: strip doc srcdist dist
musixcrd.tex: strip.tex musixcrd.dtx
tex strip.tex
doc.toc: doc.tex musixcrd.dtx
latex doc.tex
latex doc.tex
doc.dvi: doc.tex musixcrd.dtx doc.toc
latex doc.tex
doc.ps: doc.dvi
dvips -o doc.ps doc.dvi
doc.pdf: doc.dvi
dvipdfm -o doc.pdf doc.dvi
musixcrdsrc.tgz: $(SOURCES)
tar czvf musixcrdsrc.tgz $(SOURCES)
musixcrd.tgz: makefile $(TARGETS)
tar czvf musixcrd.tgz $(TARGETS)
|