annotate man/Makefile.in.in @ 3:30df88044ec6

Added tag r19-15b2 for changeset ac2d302a0011
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents ac2d302a0011
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Makefile for man subdirectory in XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1995 Board of Trustees, University of Illinois
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1994, 1995 Sun Microsystems.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to the Free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Avoid trouble on systems where the `SHELL' variable might be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 inherited from the environment. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 SHELL = /bin/sh
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Some people use these in paths they define. We don't want their paths
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 getting changed on them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #undef sparc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #undef sun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #undef unix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #undef i386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #undef ppc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #undef sgi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 /* ==================== Things `configure' will edit ==================== */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 CC=@CC@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 CFLAGS=@CFLAGS@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 YACC=@YACC@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 version=@version@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 configuration=@configuration@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 /* ==================== Where To Install Things ==================== */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* The default location for installation. Everything is placed in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 subdirectories of this directory. The default values for many of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 the variables below are expressed in terms of this one, so you may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 not need to change them. This is set with the --prefix option to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 `../configure'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 prefix=@prefix@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 /* Like `prefix', but used for architecture-specific files. This is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 set with the --exec-prefix option to `../configure'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 exec_prefix=@exec_prefix@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 /* Where to install Emacs and other binaries that people will want to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 run directly (like etags). This is set with the --bindir option
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 to `../configure'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 bindir=@bindir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 /* Where to install and expect executable files to be run by Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 rather than directly by users, and other architecture-dependent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 data. ${archlibdir} is usually below this. This is set with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 --libdir option to `../configure'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 libdir=@libdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 /* Where to find the source code. This is set by the configure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 script's `--srcdir' option. However, the value of ${srcdir} in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 this makefile is not identical to what was specified with --srcdir,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 since the variable here has `/man' added at the end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 srcdir=@srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 /* ============================= Targets ============================== */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #define NO_SHORTNAMES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #define THIS_IS_YMAKEFILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #define NOT_C_CODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 #include "../src/config.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 /* With the traditional VPATH setting, it is not possible to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 simultaneously compile in-place and in another directory. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 mistaken definition is that *all* dependencies are searched for in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 the VPATH directory, rather than just the dependencies that are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 themselves targets. Thus, if there is an up-to-date .o file in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 in-place location, it will not get recompiled in the not-in-place
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 location.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 The GNU Make `vpath' directive continues this tradition, but at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 least lets you restrict the classes of files that it applies to.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 This allows us to kludge around the problem. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #ifdef USE_GNU_MAKE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 vpath %.c @srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 vpath %.h @srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 /* now list files that should NOT be searched in the srcdir.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 This includes any .c or .h that's built from something else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (e.g. a .in file). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* none here */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 VPATH=@srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 #ifndef C_SWITCH_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 #define C_SWITCH_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 #ifndef C_SWITCH_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 #define C_SWITCH_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 #ifndef LD_SWITCH_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 #define LD_SWITCH_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 LOADLIBES=LD_SWITCH_SITE @libsrc_libs@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 CPPFLAGS=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 ALL_CFLAGS = C_SWITCH_SITE C_SWITCH_SYSTEM -Demacs -DHAVE_CONFIG_H \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 -DHAVE_STDARG_H -DHAVE_STRING_H -DHAVE_ALLOCA_H -Dxfree=free \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CFLAGS}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 CPP_CFLAGS = C_SWITCH_SITE C_SWITCH_SYSTEM -Demacs -DHAVE_CONFIG_H \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 -DHAVE_STDARG_H -DHAVE_STRING_H -DHAVE_ALLOCA_H -Dxfree=free \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 OBJS = makeinfo.o getopt.o getopt1.o alloca.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 /* Subdirectories to make recursively. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 SUBDIR = xemacs lispref new-users-guide internals
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 /* The makefiles of the directories in $SUBDIR. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 SUBDIR_MAKEFILES = xemacs/Makefile lispref/Makefile new-users-guide/Makefile internals/Makefile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 .c.o:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 ${CC} -c ${CPP_CFLAGS} $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 ../info/%.info : %.texi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 -./makeinfo -o $@ $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 srcs = ange-ftp cc-mode cl dired ediff external-widget forms gnus \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 hyperbole ilisp info internals ispell mailcrypt message mh-e \
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
139 oo-browser pcl-cvs psgml psgml-api rmail standards supercite term \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
140 termcap texinfo viper vm w3 xemacs-faq
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 info = $(srcs:%=../info/%.info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 all : ${SUBDIR} $(info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 .RECURSIVE: ${SUBDIR}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 xemacs: FRC.xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 lispref: FRC.lispref
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 new-users-guide: FRC.new-users-guide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 internals: FRC.internals
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 ${SUBDIR}: ${SUBDIR_MAKEFILES} makeinfo FRC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 cd $@ && $(MAKE) all $(MFLAGS) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 makeinfo: ../src/config.h $(OBJS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 $(CC) -o makeinfo $(OBJS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 texindex: texindex.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 $(CC) -o texindex texindex.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 alloca.c :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 [ -h alloca.c ] || ln -s ../src/alloca.c .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 getopt.h :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 [ -h getopt.h ] || ln -s ../lib-src/getopt.h .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 getopt.c :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 [ -h getopt.c ] || ln -s ../lib-src/getopt.c .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 getopt1.c :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 [ -h getopt1.c ] || ln -s ../lib-src/getopt1.c .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 mostlyclean: clean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (cd xemacs && $(MAKE) $(MFLAGS) mostlyclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (cd lispref && $(MAKE) $(MFLAGS) mostlyclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (cd new-users-guide && $(MAKE) $(MFLAGS) mostlyclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (cd internals && $(MAKE) $(MFLAGS) mostlyclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 clean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 rm -f *.dvi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 rm -f getopt1.c getopt.c getopt.h alloca.c makeinfo texindex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 rm -f *.toc *.aux *.log *.cp *.fn *.ky *.pg *.vr *.o core
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 /* These are needed because they are present in the other makefiles. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 distclean: mostlyclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (cd xemacs && $(MAKE) $(MFLAGS) distclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (cd lispref && $(MAKE) $(MFLAGS) distclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (cd new-users-guide && $(MAKE) $(MFLAGS) distclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (cd internals && $(MAKE) $(MFLAGS) distclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 rm -f Makefile Makefile.in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 realclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (cd xemacs && $(MAKE) $(MFLAGS) realclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (cd lispref && $(MAKE) $(MFLAGS) realclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (cd new-users-guide && $(MAKE) $(MFLAGS) realclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (cd internals && $(MAKE) $(MFLAGS) realclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 extraclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (cd xemacs && $(MAKE) $(MFLAGS) extraclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (cd lispref && $(MAKE) $(MFLAGS) extraclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (cd new-users-guide && $(MAKE) $(MFLAGS) extraclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (cd internals && $(MAKE) $(MFLAGS) extraclean)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 -rm -f *~ \#*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 makeinfo.o : getopt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 getopt.o : getopt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 getopt1.o : getopt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 texindex.o : getopt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 FRC FRC.xemacs FRC.lispref FRC.new-users-guide FRC.internals:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211