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