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