Mercurial > hg > xemacs-beta
comparison man/new-users-guide/Makefile @ 412:697ef44129c6 r21-2-14
Import from CVS: tag r21-2-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:20:41 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
411:12e008d41344 | 412:697ef44129c6 |
---|---|
1 # Makefile for the XEmacs New Users Guide | |
2 | |
3 # This file is part of XEmacs. | |
4 | |
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. | |
9 | |
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. | |
14 | |
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. | |
19 | |
20 NAME=new-users-guide | |
21 | |
22 SHELL = /bin/sh | |
23 TEXI2DVI = texi2dvi | |
24 MAKEINFO = makeinfo | |
25 | |
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 | |
32 all : info | |
33 info : ../../info/$(NAME).info | |
34 | |
35 ../../info/$(NAME).info: $(srcs) | |
36 $(MAKEINFO) -o $@ $(NAME).texi | |
37 | |
38 dvi : $(NAME).dvi | |
39 .texi.dvi : | |
40 $(TEXI2DVI) $< | |
41 | |
42 .PHONY: mostlyclean clean distclean realclean extraclean | |
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 | |
47 rm -f *.dvi *.ps make.out core | |
48 distclean: clean | |
49 realclean: clean | |
50 extraclean: clean | |
51 -rm -f *~ \#* |