0
|
1 # Makefile for the XEmacs New Users Guide
|
8
|
2
|
|
3 # This file is part of XEmacs.
|
0
|
4
|
8
|
5 # XEmacs is free software; you can redistribute it and/or modify it
|
|
6 # under the terms of the GNU General Public License as published by the
|
|
7 # Free Software Foundation; either version 2, or (at your option) any
|
|
8 # later version.
|
0
|
9
|
8
|
10 # XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
13 # for more details.
|
0
|
14
|
8
|
15 # You should have received a copy of the GNU General Public License
|
|
16 # along with XEmacs; see the file COPYING. If not, write to
|
|
17 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
18 # Boston, MA 02111-1307, USA.
|
0
|
19
|
|
20 NAME=new-users-guide
|
|
21
|
8
|
22 SHELL = /bin/sh
|
|
23 TEXI2DVI = texi2dvi
|
193
|
24 MAKEINFO = makeinfo
|
8
|
25
|
0
|
26 # List of all the texinfo files in the manual:
|
|
27
|
|
28 srcs = new-users-guide.texi custom1.texi files.texi region.texi \
|
|
29 custom2.texi help.texi search.texi edit.texi modes.texi \
|
|
30 xmenu.texi enter.texi
|
|
31
|
8
|
32 all : info
|
|
33 info : ../../info/$(NAME).info
|
0
|
34
|
8
|
35 ../../info/$(NAME).info: $(srcs)
|
193
|
36 $(MAKEINFO) -o $@ $(NAME).texi
|
0
|
37
|
8
|
38 dvi : $(NAME).dvi
|
|
39 .texi.dvi :
|
|
40 $(TEXI2DVI) $<
|
0
|
41
|
173
|
42 .PHONY: mostlyclean clean distclean realclean extraclean
|
0
|
43 mostlyclean:
|
|
44 rm -f *.toc *.aux *.oaux *.log *.cp *.cps *.fn *.fns *.tp *.tps \
|
|
45 *.vr *.vrs *.pg *.pgs *.ky *.kys
|
|
46 clean: mostlyclean
|
8
|
47 rm -f *.dvi *.ps make.out core
|
|
48 distclean: clean
|
|
49 realclean: clean
|
|
50 extraclean: clean
|
0
|
51 -rm -f *~ \#*
|