]> code.delx.au - gnu-emacs/blob - lib-src/Makefile.in
*** empty log message ***
[gnu-emacs] / lib-src / Makefile.in
1 # Makefile for lib-src subdirectory in GNU Emacs.
2 # Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
3
4 # This file is part of GNU Emacs.
5
6 # GNU Emacs is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs; see the file COPYING. If not, write to
18 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 # Avoid trouble on systems where the `SHELL' variable might be
21 # inherited from the environment.
22 SHELL = /bin/sh
23
24 # ==================== Things `configure' will edit ====================
25
26 CC=@CC@
27 CFLAGS=@CFLAGS@
28 ALLOCA=@ALLOCA@
29 YACC=@YACC@
30 version=@version@
31 configuration=@configuration@
32
33 # ==================== Where To Install Things ====================
34
35 # The default location for installation. Everything is placed in
36 # subdirectories of this directory. The default values for many of
37 # the variables below are expressed in terms of this one, so you may
38 # not need to change them. This is set with the --prefix option to
39 # `../configure'.
40 prefix=@prefix@
41
42 # Like `prefix', but used for architecture-specific files. This is
43 # set with the --exec-prefix option to `../configure'.
44 exec_prefix=@exec_prefix@
45
46 # Where to install Emacs and other binaries that people will want to
47 # run directly (like etags). This is set with the --bindir option
48 # to `../configure'.
49 bindir=@bindir@
50
51 # Where to install and expect executable files to be run by Emacs
52 # rather than directly by users, and other architecture-dependent
53 # data. ${archlibdir} is usually below this. This is set with the
54 # --libdir option to `../configure'.
55 libdir=@libdir@
56
57 # Where to find the source code. This is set by the configure
58 # script's `--srcdir' option. However, the value of ${srcdir} in
59 # this makefile is not identical to what was specified with --srcdir,
60 # since the variable here has `/lib-src' added at the end.
61 srcdir=@srcdir@
62 VPATH=@srcdir@
63
64 # ==================== Emacs-specific directories ====================
65
66 # These variables hold the values Emacs will actually use. They are
67 # based on the values of the standard Make variables above.
68
69 # Where to put executables to be run by Emacs rather than the user.
70 # This path usually includes the Emacs version and configuration name,
71 # so that multiple configurations for multiple versions of Emacs may
72 # be installed at once. This can be set with the --archlibdir option
73 # to `../configure'.
74 archlibdir=@archlibdir@
75
76 # ==================== Utility Programs for the Build =================
77
78 # ../configure figures out the correct values for these.
79 INSTALL = @INSTALL@
80 INSTALL_PROGRAM = @INSTALL_PROGRAM@
81 INSTALL_DATA = @INSTALL_DATA@
82
83 # ========================== Lists of Files ===========================
84
85 # Things that a user might actually run,
86 # which should be installed in bindir.
87 INSTALLABLES = etags ctags emacsclient b2m
88 INSTALLABLE_SCRIPTS = rcs-checkin
89
90 # Things that Emacs runs internally, or during the build process,
91 # which should not be installed in bindir.
92 UTILITIES= test-distrib make-path wakeup profile make-docfile digest-doc \
93 sorted-doc movemail cvtmail fakemail yow emacsserver hexl timer
94
95 # Like UTILITIES, but they're not system-dependent, and should not be
96 # deleted by the distclean target.
97 SCRIPTS= rcs2log vcdiff
98
99 EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}
100
101 SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \
102 makedoc.com *.[chy] rcs2log vcdiff
103
104 # ========================== start of cpp stuff =======================
105 /* From here on, comments must be done in C syntax. */
106
107 #define NO_SHORTNAMES
108 #define THIS_IS_YMAKEFILE
109 #define NOT_C_CODE
110 #include "../src/config.h"
111
112 /* We won't really call alloca;
113 don't let the file name alloca.c get messed up. */
114 #ifdef alloca
115 #undef alloca
116 #endif
117
118 /* Some s/*.h files define this to request special libraries. */
119 #ifndef LIBS_SYSTEM
120 #define LIBS_SYSTEM
121 #endif
122
123 /* Some m/*.h files define this to request special libraries. */
124 #ifndef LIBS_MACHINE
125 #define LIBS_MACHINE
126 #endif
127
128 #ifndef C_SWITCH_SYSTEM
129 #define C_SWITCH_SYSTEM
130 #endif
131
132 #ifndef C_SWITCH_MACHINE
133 #define C_SWITCH_MACHINE
134 #endif
135
136 #undef MOVEMAIL_NEEDS_BLESSING
137 #ifndef MAIL_USE_FLOCK
138 #ifndef MAIL_USE_LOCKF
139 #define MOVEMAIL_NEEDS_BLESSING
140 #endif
141 #endif
142
143 #ifdef MOVEMAIL_NEEDS_BLESSING
144 #define BLESSMAIL blessmail
145 #else
146 #define BLESSMAIL
147 #endif
148
149 LOADLIBES=LIBS_SYSTEM LIBS_MACHINE
150
151 /* We need to #define emacs to get the right versions of some files.
152 Some other files - those shared with other GNU utilities - need
153 HAVE_CONFIG_H #defined before they know they can take advantage of
154 the information in ../src/config.h. */
155 ALL_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \
156 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
157 LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \
158 -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS}
159 CPP_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \
160 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
161 ALLOCA_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \
162 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
163 \f
164 /* This is the default compilation command.
165 But we should never rely on it, because some make version
166 failed to find it for getopt.o.
167 Using an explicit command made it work. */
168 .c.o:
169 ${CC} -c ${CPP_CFLAGS} $<
170
171 all: ${UTILITIES} ${INSTALLABLES}
172
173 #ifdef MOVEMAIL_NEEDS_BLESSING
174 blessmail:
175 ../src/emacs -batch -l ../lisp/blessmail.el
176 chmod +x blessmail
177 #endif
178
179 maybe-blessmail: BLESSMAIL
180 #ifdef MOVEMAIL_NEEDS_BLESSING
181 /* Don't charge ahead and do it! Let the installer decide.
182 ./blessmail ${archlibdir}/movemail */
183 @if [ `wc -l <blessmail` != 2 ] ; then \
184 dir=`sed -n -e 's/echo mail directory = \(.*\)/\1/p' blessmail`; \
185 echo Assuming $$dir is really the mail spool directory, you should; \
186 echo run lib-src/blessmail ${archlibdir}/movemail; \
187 echo as root, to give movemail appropriate permissions.; \
188 echo Do that after running make install.; \
189 fi
190 #endif
191
192 /* Install the internal utilities. Until they are installed, we can
193 just run them directly from lib-src. */
194 ${archlibdir}: all
195 @echo
196 @echo "Installing utilities run internally by Emacs."
197 ./make-path ${archlibdir}
198 if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \
199 for file in ${UTILITIES}; do \
200 (cd ..; $(INSTALL_PROGRAM) lib-src/$$file ${archlibdir}/$$file) ; \
201 done ; \
202 fi
203 if [ `(cd ${archlibdir} && /bin/pwd)` \
204 != `(cd ${srcdir} && /bin/pwd)` ]; then \
205 for file in ${SCRIPTS}; do \
206 (cd ..; $(INSTALL_PROGRAM) ${srcdir}/$$file ${archlibdir}/$$file); \
207 done ; \
208 fi
209
210 /* We don't need to install `wakeup' explicitly, because it will be
211 copied when this whole directory is copied. */
212 install: ${archlibdir}
213 @echo
214 @echo "Installing utilities for users to run."
215 for file in ${INSTALLABLES} ; do \
216 (cd ..; $(INSTALL_PROGRAM) lib-src/$${file} ${bindir}/$${file}) ; \
217 done
218 for file in ${INSTALLABLE_SCRIPTS} ; do \
219 (cd ..; $(INSTALL_PROGRAM) ${srcdir}/$${file} ${bindir}/$${file}) ; \
220 done
221
222 uninstall:
223 (cd ${bindir}; \
224 rm -f ${INSTALLABLES} ${INSTALLABLE_SCRIPTS})
225 (cd ${archlibdir}; \
226 rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
227
228 mostlyclean:
229 -rm -f core *.o
230
231 clean: mostlyclean
232 -rm -f ${INSTALLABLES} ${UTILITIES}
233
234 distclean: clean
235 -rm -f ../etc/DOC* *.tab.c *.tab.h aixcc.c TAGS
236 -rm -f Makefile Makefile.in blessmail
237
238 realclean: distclean
239 true
240
241 extraclean: realclean
242 -rm -f *~ \#*
243
244 unlock:
245 chmod u+w $(SOURCES)
246
247 relock:
248 chmod u-w $(SOURCES)
249
250 /* Test the contents of the directory. */
251 check:
252 @echo "We don't have any tests for GNU Emacs yet."
253
254 TAGS: etags
255 etags *.[ch]
256
257 /* This verifies that the non-ASCII characters in the file `testfile'
258 have not been clobbered by whatever means were used to copy and
259 distribute Emacs. If they were clobbered, all the .elc files were
260 clobbered too. */
261 test-distrib: ${srcdir}/test-distrib.c
262 $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c
263 ./test-distrib ${srcdir}/testfile
264
265 GETOPTOBJS = getopt.o getopt1.o $(ALLOCA)
266 GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h
267 getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h
268 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c
269 getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h
270 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c
271 alloca.o: ${srcdir}/alloca.c
272 ${CC} -c ${ALLOCA_CFLAGS} ${srcdir}/alloca.c
273
274 etags: ${srcdir}/etags.c $(GETOPTDEPS) ../src/config.h
275 $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags
276
277 /* We depend on etags to assure that parallel makes don't write two
278 etags.o files on top of each other. */
279 ctags: ${srcdir}/etags.c $(GETOPTDEPS) etags
280 $(CC) ${ALL_CFLAGS} -DCTAGS -DVERSION="\"${version}\"" ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o ctags
281
282 wakeup: ${srcdir}/wakeup.c
283 $(CC) ${ALL_CFLAGS} ${srcdir}/wakeup.c $(LOADLIBES) -o wakeup
284
285 profile: ${srcdir}/profile.c
286 $(CC) ${ALL_CFLAGS} ${srcdir}/profile.c $(LOADLIBES) -o profile
287
288 make-docfile: ${srcdir}/make-docfile.c
289 $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile
290
291 digest-doc: ${srcdir}/digest-doc.c
292 $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc
293
294 sorted-doc: ${srcdir}/sorted-doc.c ${ALLOCA}
295 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc
296
297 b2m: ${srcdir}/b2m.c ../src/config.h
298 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c $(LOADLIBES) -o b2m
299
300 movemail: ${srcdir}/movemail.c ../src/config.h
301 $(CC) ${ALL_CFLAGS} ${srcdir}/movemail.c $(LOADLIBES) -o movemail
302
303 cvtmail: ${srcdir}/cvtmail.c
304 $(CC) ${ALL_CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail
305
306 fakemail: ${srcdir}/fakemail.c ../src/config.h
307 $(CC) ${ALL_CFLAGS} ${srcdir}/fakemail.c $(LOADLIBES) -o fakemail
308
309 yow: ${srcdir}/yow.c ../src/paths.h
310 $(CC) ${ALL_CFLAGS} ${srcdir}/yow.c $(LOADLIBES) -o yow
311
312 emacsserver: ${srcdir}/emacsserver.c ../src/config.h
313 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsserver.c $(LOADLIBES) -o emacsserver
314
315 emacsclient: ${srcdir}/emacsclient.c ../src/config.h
316 $(CC) ${ALL_CFLAGS} ${srcdir}/emacsclient.c $(LOADLIBES) -o emacsclient
317
318 hexl: ${srcdir}/hexl.c
319 $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
320
321 TIMEROBJS=getdate.o timer.o $(ALLOCA)
322 getdate.o: ${srcdir}/getdate.y ../src/config.h
323 ${YACC} ${YFLAGS} ${srcdir}/getdate.y
324 $(CC) $(CPP_CFLAGS) -c y.tab.c
325 mv y.tab.o getdate.o
326 timer.o: ${srcdir}/timer.c ../src/config.h
327 $(CC) -c $(CPP_CFLAGS) ${srcdir}/timer.c
328 timer: ${TIMEROBJS}
329 $(CC) $(LINK_CFLAGS) ${TIMEROBJS} $(LOADLIBES) -o timer
330
331 make-path: ${srcdir}/make-path.c ../src/config.h
332 $(CC) $(ALL_CFLAGS) ${srcdir}/make-path.c -o make-path
333
334 /* These are NOT included in INSTALLABLES or UTILITIES.
335 See ../src/Makefile.in.in. */
336 emacstool: ${srcdir}/emacstool.c
337 $(CC) ${srcdir}/emacstool.c -o emacstool ${ALL_CFLAGS} \
338 -lsuntool -lsunwindow -lpixrect $(LOADLIBES)
339
340 /* For SUN Japanese Language Environment. */
341 nemacstool: ${srcdir}/emacstool.c
342 $(CC) -o nemacstool -DJLE ${ALL_CFLAGS} ${srcdir}/emacstool.c \
343 -lsuntool -lmle -lsunwindow -lpixrect $(LOADLIBES)
344
345 xvetool: ${srcdir}/emacstool.c
346 $(CC) -o xvetool -DXVIEW ${ALL_CFLAGS} ${srcdir}/emacstool.c \
347 -lxview -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
348 $(LOADLIBES)
349
350 xveterm: ${srcdir}/emacstool.c
351 $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \
352 -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
353 $(LOADLIBES)
354
355 aixcc: ${srcdir}/aixcc.c
356 $(CC) $(ALL_CFLAGS) -o aixcc ${srcdir}/aixcc.c
357
358 aixcc.c: ${srcdir}/aixcc.lex
359 lex ${srcdir}/aixcc.lex
360 mv lex.yy.c aixcc.c