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.
5 ## This file is part of XEmacs.
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
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
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.
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? */
26 ## For performance and consistency, no built-in rules
29 ## ==================== Things "configure" will edit ====================
45 ## This will be the name of the generated binary and is set automatically
49 ## ==================== Where To Install Things ====================
52 exec_prefix=@exec_prefix@
56 archlibdir=@archlibdir@
57 configuration=@configuration@
59 sitemoduledir=@sitemoduledir@
61 ## ==================== Utility Programs for the Build =================
63 INSTALL = @install_pp@ @INSTALL@
64 INSTALL_PROGRAM = @INSTALL_PROGRAM@
65 INSTALL_DATA = @INSTALL_DATA@
67 ## ========================== Lists of Files ===========================
71 #include "../src/config.h"
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
78 #ifdef HAVE_MS_WINDOWS
79 INSTALLABLES = $(INSTALLABLES_BASE) runxemacs rungnuclient ellcc
81 INSTALLABLES = $(INSTALLABLES_BASE) ellcc
84 #ifdef HAVE_MS_WINDOWS
85 INSTALLABLES = $(INSTALLABLES_BASE) runxemacs rungnuclient
87 INSTALLABLES = $(INSTALLABLES_BASE)
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 \
97 ## These need to be conditional on I18N3 make-msgfile make-po
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)
105 EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}
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
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.
126 ## Additional libraries for movemail:
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.
135 ## ========================== start of cpp stuff =======================
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@
150 ## We need to #define emacs to get the right versions of some files.
152 cppflags = -Demacs -I../src $(CPPFLAGS)
153 cflags = $(CFLAGS) $(cppflags) $(c_switch_general)
154 ldflags = $(LDFLAGS) $(ld_switch_general) $(ld_libs_general)
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.
161 ${CC} -c $(cflags) $<
163 all: ${UTILITIES} ${INSTALLABLES} srcdir-symlink.stamp
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; \
172 #undef MOVEMAIL_NEEDS_BLESSING
173 #if !defined (MAIL_USE_FLOCK) && ! defined (MAIL_USE_LOCKF)
174 #define MOVEMAIL_NEEDS_BLESSING
175 blessmail = blessmail
177 ../src/xemacs -batch -l ../lisp/blessmail.el
179 #endif /* movemail needs blessing */
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 "*************************************************************";\
197 do-blessmail: $(blessmail)
198 #ifdef MOVEMAIL_NEEDS_BLESSING
199 ./blessmail ${archlibdir}/movemail
202 ## Install the internal utilities. Until they are installed, we can
203 ## just run them directly from lib-src.
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) ; \
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); \
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}) ; \
227 for file in ${INSTALLABLE_SCRIPTS} ; do \
228 (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$${file} ${bindir}/$${file}) ; \
233 $(RM) ${INSTALLABLES} ${INSTALLABLE_SCRIPTS})
234 (cd ${archlibdir} && \
235 $(RM) ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
237 .PHONY: mostlyclean clean distclean realclean extraclean
241 $(RM) ${INSTALLABLES} ${UTILITIES} *.exe
243 $(RM) DOC *.tab.c *.tab.h aixcc.c TAGS ellcc.h
244 $(RM) GNUmakefile Makefile Makefile.in blessmail config.values
246 extraclean: distclean
249 .PHONY: unlock relock check
255 ## Test the contents of the directory.
257 @echo "We don't have any tests for XEmacs yet."
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
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
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
281 $(CC) ${etags_args} -o $@
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
288 $(CC) ${ellcc_args} -o $@
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
298 windres --include-dir ${srcdir}/../nt -i run.rc -o run_res.o
299 $(CC) run_res.o ${run_args} -o $@
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
313 ootags: ${ootags_deps}
314 $(CC) ${ootags_args} -o $@
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 $@
321 wakeup: ${srcdir}/wakeup.c
322 $(CC) $(cflags) ${srcdir}/wakeup.c $(ldflags) -o $@
324 profile: ${srcdir}/profile.c
325 $(CC) $(cflags) ${srcdir}/profile.c $(ldflags) -o $@
327 make-docfile: ${srcdir}/make-docfile.c
328 $(CC) $(cflags) ${srcdir}/make-docfile.c $(ldflags) -o $@
330 digest-doc: ${srcdir}/digest-doc.c
331 $(CC) $(cflags) ${srcdir}/digest-doc.c $(ldflags) -o $@
333 sorted-doc: ${srcdir}/sorted-doc.c
334 $(CC) $(cflags) ${srcdir}/sorted-doc.c $(ldflags) -o $@
336 b2m: ${srcdir}/b2m.c ../src/config.h
337 $(CC) $(cflags) ${srcdir}/b2m.c $(ldflags) -o $@
339 movemail: ${srcdir}/movemail.c ${srcdir}/pop.c ${srcdir}/pop.h $(GETOPTDEPS) regex.o \
341 $(CC) $(cflags) ${MOVE_FLAGS} ${srcdir}/movemail.c ${srcdir}/pop.c \
342 $(GETOPTOBJS) regex.o $(ldflags) ${MOVE_LIBS} -o $@
344 cvtmail: ${srcdir}/cvtmail.c
345 $(CC) $(cflags) ${srcdir}/cvtmail.c $(ldflags) -o $@
347 fakemail: ${srcdir}/fakemail.c ../src/config.h
348 $(CC) $(cflags) ${srcdir}/fakemail.c $(ldflags) -o $@
350 yow: ${srcdir}/yow.c ../src/paths.h
351 $(CC) $(cflags) ${srcdir}/yow.c $(ldflags) -o $@
353 hexl: ${srcdir}/hexl.c
354 $(CC) $(cflags) ${srcdir}/hexl.c $(ldflags) -o $@
356 make-msgfile: ${srcdir}/make-msgfile.c
357 $(CC) $(cflags) ${srcdir}/make-msgfile.c $(ldflags) -o $@
359 make-po: ${srcdir}/make-po.c
360 $(CC) $(cflags) ${srcdir}/make-po.c $(ldflags) -o $@
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 $@
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 $@
377 ## The timer utility (timer.c, getdate.y) is not used in XEmacs
378 ## because XEmacs provides built-in timer facilities.
380 make-path: ${srcdir}/make-path.c ../src/config.h
381 $(CC) $(cflags) ${srcdir}/make-path.c -o $@
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 $@
388 aixcc.c: ${srcdir}/aixcc.lex
389 lex ${srcdir}/aixcc.lex