blob: 39fbe6316430fea7eed7e15f6ed5f4ee01a51534 (
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
62
63
64
65
66
67
68
69
70
71
72
73
|
XCOMM $Id: Imakefile,v 2.1 1995/08/04 00:18:32 schrod Exp $
/* ---------------------------------------------------------------------- */
/*
* Imakefile for footnpag bundle
*
* (history at end)
*/
/* needed modules */
#include <TeX.imk>
#include <makeprog.imk>
#include <install/TeX.imk>
XCOMM ------------------------------------------------------------
XCOMM continue in Imakefile
/* exported files */
MpDoc2TeXTarget(footnpag,sty)
TeXTarget(latex,footnpag-user)
/* TeXTarget(latex,footnpag-conf) */
/* installation */
#ifdef ITI_Site
DESTDIR = /archives/tex/Install
#endif
InstallTeXLaTeX(misc,footnpag.sty)
InstallTeXDoc(latex/styles,footnpag-user.dvi)
/* InstallTeXDoc(latex/styles/XXX,footnpag-conf.dvi) */
/* internal documentation */
TeXFileTarget(latex,footnpag,doc)
/* export */
export:: all footnpag.dvi
mv footnpag-*.dvi footnpag.sty ..
cp $(HOME)/Notes/README.latex.doc-src README
$(MAKE) realclean
realclean:: clean
$(RM) Makefile
test -s TODO || $(RM) TODO
/* ============================================================
*
* $Log: Imakefile,v $
* Revision 2.1 1995/08/04 00:18:32 schrod
* Made a \LaTeXe{} package from this style option.
*
* User manual is a separate document now, that's better for
* installation. Started to change the distribution into one that
* conforms to the `supported bundle guidelines.'
*
* ------------------------------------------------------------
* Local Variables:
* mode: Indented-Text
* End:
*/
|