/[cln]/doc/Makefile.devel
ViewVC logotype

Contents of /doc/Makefile.devel

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (show annotations) (vendor branch)
Fri Jan 28 11:37:19 2000 UTC (13 years, 4 months ago) by kreckel
Branch: cln, MAIN
CVS Tags: cln_1-1-1, cln_1-1-0, cln_1-1-3, cln_1-1-2, cln_1-1-5, cln_1-1-4, cln_1-1-7, cln_1-1-6, cln_1-2-2, cln_1-1-8, cln_1-2-0, cln_1-2-1, release-1_0_3, cln_1-1-9, cln_1-1-11, cln_1-1-10, cln_1-1-13, cln_1-1-12, cln_1-1_maintenance-branchpoint, HEAD
Branch point for: cln_1-1
Changes since 1.1: +0 -0 lines
- CLN vanilla release 1.0.3.

1 # This is the developer's makefile, not the user's makefile.
2 # Don't use it unless you know exactly what you do!
3
4
5 PACKAGE = cln
6
7
8 # Some important programs:
9 SHELL = /bin/sh
10 MAKE = make
11
12 TEXI2DVI = texi2dvi
13 DVIPS = dvips -D600
14 MAKEINFO = LANGUAGE= makeinfo
15 TEXI2HTML = texi2html
16 EMACS = emacs
17
18
19 all : documentation
20
21 documentation : $(PACKAGE).dvi $(PACKAGE).ps $(PACKAGE).info $(PACKAGE).html $(PACKAGE)_toc.html
22
23 $(PACKAGE).dvi : $(PACKAGE).texi
24 $(TEXI2DVI) $(PACKAGE).texi
25 rm -f *.aux *.toc *.cp *.fn *.ky *.pg *.tp *.vr *.my *.log
26
27 $(PACKAGE).ps : $(PACKAGE).dvi
28 $(DVIPS) -o $(PACKAGE).ps $(PACKAGE).dvi
29
30 $(PACKAGE).info : $(PACKAGE).texi
31 $(MAKEINFO) --no-split $(PACKAGE).texi
32
33 $(PACKAGE).html : $(PACKAGE).texi
34 $(TEXI2HTML) -expandinfo -number -monolithic $(PACKAGE).texi
35
36 $(PACKAGE)_toc.html : $(PACKAGE).texi
37 $(TEXI2HTML) -expandinfo -number -split_chapter $(PACKAGE).texi
38
39 $(PACKAGE).texi : $(PACKAGE).tex
40 rm -f $(PACKAGE).texi
41 cp $(PACKAGE).tex $(PACKAGE).texi
42 $(EMACS) -batch $(PACKAGE).texi -load addnodes.el -f save-buffer
43 mv $(PACKAGE).texi $(PACKAGE).texi~
44 sed -e 's,@detailmenu,,g' -e 's,@end detailmenu,,g' < $(PACKAGE).texi~ > $(PACKAGE).texi
45 rm -f *~

Christian Bauer">Christian Bauer
ViewVC Help
Powered by ViewVC 1.1.15