163
|
1 ## Makefile for lib-src subdirectory in XEmacs.
|
|
2 ## Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
|
|
3 ## Copyright (C) 1996, 1997 Sun Microsystems, Inc.
|
0
|
4
|
163
|
5 ## This file is part of XEmacs.
|
0
|
6
|
163
|
7 ## XEmacs is free software; you can redistribute it and/or modify it
|
|
8 ## under the terms of the GNU General Public License as published by the
|
|
9 ## Free Software Foundation; either version 2, or (at your option) any
|
|
10 ## later version.
|
0
|
11
|
163
|
12 ## XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 ## for more details.
|
0
|
16
|
163
|
17 ## You should have received a copy of the GNU General Public License
|
|
18 ## along with XEmacs; see the file COPYING. If not, write to
|
|
19 ## the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 ## Boston, MA 02111-1307, USA.
|
0
|
21
|
163
|
22 ## Note: FSF Makefile.in.in does something weird so that the comments
|
|
23 ## above a certain point in this file are in shell format instead of
|
|
24 ## in C format. How the hell is this supposed to work? */
|
|
25
|
|
26 ## For performance and consistency, no built-in rules
|
155
|
27 .SUFFIXES:
|
272
|
28 .SUFFIXES: .c .h .o
|
163
|
29 ## ==================== Things "configure" will edit ====================
|
0
|
30
|
173
|
31 @SET_MAKE@
|
|
32 SHELL = /bin/sh
|
|
33 RM = rm -f
|
193
|
34 pwd = /bin/pwd
|
173
|
35
|
0
|
36 CC=@CC@
|
149
|
37 CPP=@CPP@
|
0
|
38 CFLAGS=@CFLAGS@
|
149
|
39 CPPFLAGS=@CPPFLAGS@
|
|
40 LDFLAGS=@LDFLAGS@
|
0
|
41 ALLOCA=@ALLOCA@
|
|
42 LN_S=@LN_S@
|
|
43 version=@version@
|
|
44
|
282
|
45 ## This will be the name of the generated binary and is set automatically
|
|
46 ## by configure.
|
|
47 PROGNAME=@PROGNAME@
|
|
48
|
163
|
49 ## ==================== Where To Install Things ====================
|
0
|
50
|
163
|
51 prefix=@prefix@
|
|
52 exec_prefix=@exec_prefix@
|
|
53 bindir=@bindir@
|
0
|
54 libdir=@libdir@
|
|
55 srcdir=@srcdir@
|
398
|
56 datadir=@datadir@
|
|
57 instvardir=@instvardir@
|
|
58 top_srcdir=@top_srcdir@
|
0
|
59 archlibdir=@archlibdir@
|
183
|
60 configuration=@configuration@
|
388
|
61 moduledir=@moduledir@
|
|
62 sitemoduledir=@sitemoduledir@
|
|
63
|
163
|
64 ## ==================== Utility Programs for the Build =================
|
0
|
65
|
276
|
66 INSTALL = @install_pp@ @INSTALL@
|
0
|
67 INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
68 INSTALL_DATA = @INSTALL_DATA@
|
|
69
|
163
|
70 ## ========================== Lists of Files ===========================
|
0
|
71
|
290
|
72 #define NO_SHORTNAMES
|
|
73 #define NOT_C_CODE
|
|
74 #include "../src/config.h"
|
|
75
|
163
|
76 ## Things that a user might actually run,
|
|
77 ## which should be installed in bindir.
|
398
|
78 #ifdef WINDOWSNT
|
|
79 INSTALLABLES_BASE = etags ctags b2m ootags
|
|
80 #else
|
290
|
81 INSTALLABLES_BASE = etags ctags b2m gnuclient ootags
|
398
|
82 #endif
|
|
83 INSTALLABLE_SCRIPTS = rcs-checkin gnudoit gnuattach
|
388
|
84 #ifdef HAVE_SHLIB
|
290
|
85 #ifdef HAVE_MS_WINDOWS
|
388
|
86 INSTALLABLES = $(INSTALLABLES_BASE) runxemacs rungnuclient ellcc
|
|
87 #else
|
|
88 INSTALLABLES = $(INSTALLABLES_BASE) ellcc
|
|
89 #endif
|
|
90 #else
|
|
91 #ifdef HAVE_MS_WINDOWS
|
|
92 INSTALLABLES = $(INSTALLABLES_BASE) runxemacs rungnuclient
|
290
|
93 #else
|
398
|
94 INSTALLABLES = $(INSTALLABLES_BASE)
|
290
|
95 #endif
|
388
|
96 #endif
|
290
|
97
|
0
|
98
|
163
|
99 ## Things that Emacs runs internally, or during the build process,
|
|
100 ## which should not be installed in bindir.
|
398
|
101 #ifdef WINDOWSNT
|
|
102 UTILITIES= make-path wakeup profile make-docfile digest-doc \
|
|
103 sorted-doc movemail cvtmail yow hexl \
|
|
104 mmencode
|
|
105 #else
|
0
|
106 UTILITIES= make-path wakeup profile make-docfile digest-doc \
|
149
|
107 sorted-doc movemail cvtmail fakemail yow hexl \
|
181
|
108 gnuserv mmencode
|
398
|
109 #endif
|
163
|
110 ## These need to be conditional on I18N3 make-msgfile make-po
|
0
|
111
|
163
|
112 ## Like UTILITIES, but they are not system-dependent, and should not be
|
|
113 ## deleted by the distclean target.
|
375
|
114 GEN_SCRIPTS = rcs2log vcdiff gzip-el.sh
|
286
|
115 PKG_SCRIPTS = add-big-package.sh
|
375
|
116 SCRIPTS = $(GEN_SCRIPTS) $(PKG_SCRIPTS)
|
0
|
117
|
|
118 EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}
|
|
119
|
|
120 SOURCES = COPYING ChangeLog Makefile.in.in README aixcc.lex emacs.csh \
|
26
|
121 makedoc.com *.[chy] $(SCRIPTS)
|
163
|
122 ## Additional -D flags for movemail (add to MOVE_FLAGS if desired):
|
|
123 ## MAIL_USE_POP Support mail retrieval from a POP mailbox.
|
|
124 ## MAIL_USE_MMDF Support MMDF mailboxes.
|
|
125 ## MAIL_USE_FLOCK Use flock for file locking (see the comments
|
|
126 ## about locking in movemail.c)
|
|
127 ## MAIL_UNLINK_SPOOL Unlink the user spool mailbox after reading
|
|
128 ## it (instead of just emptying it).
|
|
129 ## KERBEROS Support Kerberized POP.
|
|
130 ## KRB5 Support Kerberos Version 5 pop instead of
|
|
131 ## Version 4 (define this in addition to
|
|
132 ## KERBEROS).
|
|
133 ## HESIOD Support Hesiod lookups of user mailboxes.
|
|
134 ## MAILHOST A string, the host name of the default POP
|
|
135 ## mail host for the site.
|
|
136
|
118
|
137 MOVE_FLAGS=
|
163
|
138 ##
|
|
139 ## Additional libraries for movemail:
|
|
140 ## For KERBEROS
|
|
141 ## MOVE_LIBS= -lkrb -ldes -lcom_err
|
|
142 ## For KERBEROS + KRB5
|
|
143 ## MOVE_LIBS= -lkrb5 -lcrypto -lisode -lcom_err
|
|
144 ## Add "-lhesiod" if HESIOD is defined.
|
|
145
|
118
|
146 MOVE_LIBS=
|
|
147
|
163
|
148 ## ========================== start of cpp stuff =======================
|
0
|
149
|
|
150 #ifdef USE_GNU_MAKE
|
|
151 vpath %.c @srcdir@
|
|
152 vpath %.h @srcdir@
|
|
153 #else
|
|
154 VPATH=@srcdir@
|
|
155 #endif
|
|
156
|
149
|
157 c_switch_general=@c_switch_general@
|
|
158 c_switch_all=@c_switch_all@
|
|
159 ld_switch_general=@ld_switch_general@
|
|
160 ld_switch_all=@ld_switch_all@
|
|
161 ld_libs_general=@ld_libs_general@
|
0
|
162
|
163
|
163 ## We need to #define emacs to get the right versions of some files.
|
149
|
164
|
398
|
165 ## To understand the order of -I flags, consider what happens if you run
|
|
166 ## ./configure in the source tree, and then run
|
|
167 ## $(srcdir).2.26/configure in some other build tree.
|
|
168 ## Where will the generated files like config.h be included from?
|
|
169 ## This is also why you _must_ use <...> instead of "..."
|
|
170 ## when #include'ing generated files.
|
|
171 cppflags = -Demacs -I. -I../src -I$(srcdir) -I$(top_srcdir)/src $(CPPFLAGS)
|
272
|
172 cflags = $(CFLAGS) $(cppflags) $(c_switch_general)
|
|
173 ldflags = $(LDFLAGS) $(ld_switch_general) $(ld_libs_general)
|
0
|
174
|
163
|
175 ## This is the default compilation command.
|
|
176 ## But we should never rely on it, because some make version
|
|
177 ## failed to find it for getopt.o.
|
|
178 ## Using an explicit command made it work.
|
0
|
179 .c.o:
|
149
|
180 ${CC} -c $(cflags) $<
|
0
|
181
|
398
|
182 .PHONY : all maybe-blessmail install uninstall
|
|
183
|
193
|
184 all: ${UTILITIES} ${INSTALLABLES} srcdir-symlink.stamp
|
0
|
185
|
193
|
186 ## Make symlinks for shell scripts if using --srcdir
|
|
187 srcdir-symlink.stamp:
|
|
188 for f in ${SCRIPTS}; do \
|
|
189 if test ! -r $$f; then ${LN_S} ${srcdir}/$$f $$f; fi; \
|
|
190 done; \
|
|
191 touch $@;
|
163
|
192
|
|
193 #undef MOVEMAIL_NEEDS_BLESSING
|
|
194 #if !defined (MAIL_USE_FLOCK) && ! defined (MAIL_USE_LOCKF)
|
|
195 #define MOVEMAIL_NEEDS_BLESSING
|
|
196 blessmail = blessmail
|
0
|
197 blessmail:
|
219
|
198 ../src/xemacs -batch -l ../lisp/blessmail.el
|
163
|
199 chmod +x $@
|
|
200 #endif /* movemail needs blessing */
|
0
|
201
|
163
|
202 maybe-blessmail: $(blessmail)
|
0
|
203 #ifdef MOVEMAIL_NEEDS_BLESSING
|
163
|
204 ## Do not charge ahead and do it! Let the installer decide.
|
272
|
205 ## ./blessmail ${archlibdir}/movemail
|
163
|
206 @if test `wc -l <blessmail` != 2; then \
|
0
|
207 dir=`sed -n -e 's/echo mail directory = \(.*\)/\1/p' blessmail`; \
|
183
|
208 echo "*************************************************************";\
|
|
209 echo "Assuming $$dir is really the mail spool directory, you should";\
|
163
|
210 echo "run lib-src/blessmail ${archlibdir}/movemail"; \
|
|
211 echo "as root, to give movemail appropriate permissions."; \
|
|
212 echo "Do that after running make install."; \
|
183
|
213 echo "You can also do make blessmail. "; \
|
|
214 echo "*************************************************************";\
|
0
|
215 fi
|
|
216 #endif
|
|
217
|
183
|
218 do-blessmail: $(blessmail)
|
|
219 #ifdef MOVEMAIL_NEEDS_BLESSING
|
272
|
220 ./blessmail ${archlibdir}/movemail
|
183
|
221 #endif
|
|
222
|
163
|
223 ## Install the internal utilities. Until they are installed, we can
|
|
224 ## just run them directly from lib-src.
|
0
|
225 ${archlibdir}: all
|
163
|
226 @echo; echo "Installing utilities run internally by XEmacs."
|
0
|
227 ./make-path ${archlibdir}
|
284
|
228 if test "`(cd ${archlibdir} && $(pwd))`" != "`$(pwd)`"; then \
|
193
|
229 for f in ${UTILITIES}; do \
|
|
230 (cd .. && $(INSTALL_PROGRAM) lib-src/$$f ${archlibdir}/$$f) ; \
|
0
|
231 done ; \
|
|
232 fi
|
284
|
233 if test "`(cd ${archlibdir} && $(pwd))`" \
|
|
234 != "`(cd ${srcdir} && $(pwd))`"; then \
|
193
|
235 for f in ${SCRIPTS}; do \
|
|
236 (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$$f ${archlibdir}/$$f); \
|
0
|
237 done ; \
|
|
238 fi
|
|
239
|
163
|
240 ## We do not need to install "wakeup" explicitly, because it will be
|
|
241 ## copied when this whole directory is copied.
|
0
|
242 install: ${archlibdir}
|
163
|
243 @echo; echo "Installing utilities for users to run."
|
0
|
244 for file in ${INSTALLABLES} ; do \
|
80
|
245 (cd .. && $(INSTALL_PROGRAM) lib-src/$${file} ${bindir}/$${file}) ; \
|
0
|
246 done
|
|
247 for file in ${INSTALLABLE_SCRIPTS} ; do \
|
80
|
248 (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$${file} ${bindir}/$${file}) ; \
|
0
|
249 done
|
|
250
|
|
251 uninstall:
|
80
|
252 (cd ${bindir} && \
|
163
|
253 $(RM) ${INSTALLABLES} ${INSTALLABLE_SCRIPTS})
|
80
|
254 (cd ${archlibdir} && \
|
163
|
255 $(RM) ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
|
0
|
256
|
171
|
257 .PHONY: mostlyclean clean distclean realclean extraclean
|
0
|
258 mostlyclean:
|
171
|
259 $(RM) *.o *.i core
|
0
|
260 clean: mostlyclean
|
259
|
261 $(RM) ${INSTALLABLES} ${UTILITIES} *.exe
|
0
|
262 distclean: clean
|
388
|
263 $(RM) DOC *.tab.c *.tab.h aixcc.c TAGS ellcc.h
|
382
|
264 $(RM) GNUmakefile Makefile Makefile.in blessmail config.values
|
0
|
265 realclean: distclean
|
171
|
266 extraclean: distclean
|
163
|
267 $(RM) *~ \#*
|
0
|
268
|
171
|
269 .PHONY: unlock relock check
|
0
|
270 unlock:
|
|
271 chmod u+w $(SOURCES)
|
|
272 relock:
|
|
273 chmod u-w $(SOURCES)
|
|
274
|
163
|
275 ## Test the contents of the directory.
|
0
|
276 check:
|
|
277 @echo "We don't have any tests for XEmacs yet."
|
|
278
|
|
279 TAGS: etags
|
|
280 etags *.[ch]
|
|
281
|
|
282 GETOPTOBJS = getopt.o getopt1.o $(ALLOCA)
|
|
283 GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h
|
|
284 getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h
|
149
|
285 ${CC} -c $(cflags) ${srcdir}/getopt.c
|
0
|
286 getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h
|
149
|
287 ${CC} -c $(cflags) ${srcdir}/getopt1.c
|
398
|
288 alloca.o: ${top_srcdir}/src/alloca.c
|
175
|
289 ${CC} -c $(cflags) ${srcdir}/../src/alloca.c
|
0
|
290
|
398
|
291 regex.o: ${srcdir}/../src/regex.c ${top_srcdir}/src/regex.h
|
272
|
292 $(CC) -c `echo $(cflags) | sed 's/-Demacs/ /'` \
|
398
|
293 -DINHIBIT_STRING_HEADER ${top_srcdir}/src/regex.c
|
0
|
294
|
398
|
295 etags_args = $(cflags) -DVERSION='"${version}"' ${srcdir}/etags.c \
|
193
|
296 $(GETOPTOBJS) regex.o $(ldflags)
|
398
|
297 etags_deps = ${srcdir}/etags.c $(GETOPTDEPS) regex.o ../src/config.h
|
0
|
298
|
173
|
299 etags: ${etags_deps}
|
|
300 $(CC) ${etags_args} -o $@
|
282
|
301
|
398
|
302 ellcc_args = $(cflags) ${srcdir}/ellcc.c $(ldflags)
|
388
|
303 ellcc_deps = ${srcdir}/ellcc.c ellcc.h ../src/config.h
|
|
304
|
|
305 ellcc: ${ellcc_deps}
|
|
306 $(CC) ${ellcc_args} -o $@
|
290
|
307
|
398
|
308 run_args = $(cflags) -DVERSION='"${version}"' ${srcdir}/run.c \
|
388
|
309 $(ldflags) -Wl,--subsystem,windows -e _mainCRTStartup
|
398
|
310 run_deps = ${srcdir}/run.c ${srcdir}/run.h ${srcdir}/run.rc \
|
388
|
311 ${srcdir}/../nt/xemacs.ico ${srcdir}/../nt/file.ico \
|
|
312 ${srcdir}/../nt/lisp.ico
|
|
313
|
|
314 run: ${run_deps}
|
|
315 windres --include-dir ${srcdir}/../nt -i run.rc -o run_res.o
|
|
316 $(CC) run_res.o ${run_args} -o $@
|
|
317 strip $@.exe
|
|
318
|
|
319 runxemacs: run
|
|
320 cp run.exe $@.exe
|
|
321
|
|
322 rungnuclient: run
|
|
323 cp run.exe $@.exe
|
290
|
324
|
398
|
325 ootags_args = $(cflags) -DVERSION='"${version}"' ${srcdir}/ootags.c \
|
282
|
326 $(GETOPTOBJS) regex.o $(ldflags)
|
398
|
327 ootags_deps = ${srcdir}/ootags.c $(GETOPTDEPS) regex.o ../src/config.h
|
282
|
328
|
|
329 ootags: ${ootags_deps}
|
|
330 $(CC) ${ootags_args} -o $@
|
|
331
|
173
|
332 ## ctags depends on etags to assure that parallel makes do not write
|
|
333 ## two etags.o files on top of each other.
|
|
334 ctags: ${etags_deps} etags
|
|
335 $(CC) -DCTAGS ${etags_args} -o $@
|
0
|
336
|
|
337 wakeup: ${srcdir}/wakeup.c
|
272
|
338 $(CC) $(cflags) ${srcdir}/wakeup.c $(ldflags) -o $@
|
0
|
339
|
|
340 profile: ${srcdir}/profile.c
|
272
|
341 $(CC) $(cflags) ${srcdir}/profile.c $(ldflags) -o $@
|
0
|
342
|
|
343 make-docfile: ${srcdir}/make-docfile.c
|
272
|
344 $(CC) $(cflags) ${srcdir}/make-docfile.c $(ldflags) -o $@
|
0
|
345
|
|
346 digest-doc: ${srcdir}/digest-doc.c
|
272
|
347 $(CC) $(cflags) ${srcdir}/digest-doc.c $(ldflags) -o $@
|
0
|
348
|
175
|
349 sorted-doc: ${srcdir}/sorted-doc.c
|
272
|
350 $(CC) $(cflags) ${srcdir}/sorted-doc.c $(ldflags) -o $@
|
0
|
351
|
|
352 b2m: ${srcdir}/b2m.c ../src/config.h
|
272
|
353 $(CC) $(cflags) ${srcdir}/b2m.c $(ldflags) -o $@
|
0
|
354
|
377
|
355 movemail: ${srcdir}/movemail.c ${srcdir}/pop.c ${srcdir}/pop.h $(GETOPTDEPS) regex.o \
|
|
356 ../src/config.h
|
|
357 $(CC) $(cflags) ${MOVE_FLAGS} ${srcdir}/movemail.c ${srcdir}/pop.c \
|
|
358 $(GETOPTOBJS) regex.o $(ldflags) ${MOVE_LIBS} -o $@
|
0
|
359
|
|
360 cvtmail: ${srcdir}/cvtmail.c
|
272
|
361 $(CC) $(cflags) ${srcdir}/cvtmail.c $(ldflags) -o $@
|
0
|
362
|
|
363 fakemail: ${srcdir}/fakemail.c ../src/config.h
|
272
|
364 $(CC) $(cflags) ${srcdir}/fakemail.c $(ldflags) -o $@
|
0
|
365
|
|
366 yow: ${srcdir}/yow.c ../src/paths.h
|
272
|
367 $(CC) $(cflags) ${srcdir}/yow.c $(ldflags) -o $@
|
0
|
368
|
|
369 hexl: ${srcdir}/hexl.c
|
272
|
370 $(CC) $(cflags) ${srcdir}/hexl.c $(ldflags) -o $@
|
0
|
371
|
70
|
372 make-msgfile: ${srcdir}/make-msgfile.c
|
173
|
373 $(CC) $(cflags) ${srcdir}/make-msgfile.c $(ldflags) -o $@
|
70
|
374
|
|
375 make-po: ${srcdir}/make-po.c
|
173
|
376 $(CC) $(cflags) ${srcdir}/make-po.c $(ldflags) -o $@
|
70
|
377
|
404
|
378 make-dump-id: ${srcdir}/make-dump-id.c
|
|
379 $(CC) $(cflags) ${srcdir}/make-dump-id.c $(ldflags) -o $@
|
|
380
|
272
|
381 cflags_gnuserv = $(CFLAGS) $(cppflags) $(c_switch_all)
|
159
|
382 ldflags_gnuserv = $(LDFLAGS) $(ld_switch_all) @libs_xauth@ $(ld_libs_general)
|
0
|
383 gnuslib.o: ${srcdir}/gnuslib.c ${srcdir}/gnuserv.h ../src/config.h
|
272
|
384 $(CC) -c $(cflags_gnuserv) ${srcdir}/gnuslib.c
|
155
|
385 gnuclient: ${srcdir}/gnuclient.c gnuslib.o ${srcdir}/gnuserv.h
|
272
|
386 $(CC) $(cflags_gnuserv) ${srcdir}/$@.c gnuslib.o ${ldflags_gnuserv} -o $@
|
0
|
387 gnuserv: ${srcdir}/gnuserv.c gnuslib.o ${srcdir}/gnuserv.h
|
272
|
388 $(CC) $(cflags_gnuserv) ${srcdir}/$@.c gnuslib.o ${ldflags_gnuserv} -o $@
|
70
|
389
|
163
|
390 ## mmencode binary is used by tm - but is really part of the metamail package
|
|
391 ## mmencode.c was merged copy of mmencode.c and codes.c of metamail
|
14
|
392 mmencode : ${srcdir}/mmencode.c
|
272
|
393 $(CC) $(cflags) ${srcdir}/mmencode.c -o $@
|
14
|
394
|
70
|
395
|
163
|
396 ## The timer utility (timer.c, getdate.y) is not used in XEmacs
|
|
397 ## because XEmacs provides built-in timer facilities.
|
0
|
398
|
|
399 make-path: ${srcdir}/make-path.c ../src/config.h
|
173
|
400 $(CC) $(cflags) ${srcdir}/make-path.c -o $@
|
0
|
401
|
163
|
402 ## These are NOT included in INSTALLABLES or UTILITIES.
|
|
403 ## See ../src/Makefile.in.in.
|
0
|
404 aixcc: ${srcdir}/aixcc.c
|
173
|
405 $(CC) $(cflags) ${srcdir}/aixcc.c -o $@
|
0
|
406
|
|
407 aixcc.c: ${srcdir}/aixcc.lex
|
|
408 lex ${srcdir}/aixcc.lex
|
|
409 mv lex.yy.c aixcc.c
|