XEmacs 21.2.39 "Millennium".
[chise/xemacs-chise.git.1] / src / Makefile.in.in
1 ##   Makefile for src subdirectory in XEmacs.
2 ##   Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
3 ##   Copyright (C) 1994, 1995 Board of Trustees, University of Illinois
4 ##   Copyright (C) 1996, 1997 Sun Microsystems, Inc.
5 ##   Copyright (C) 1998, 1999 J. Kean Johnston.
6
7 ## This file is part of XEmacs.
8
9 ## XEmacs is free software; you can redistribute it and/or modify it
10 ## under the terms of the GNU General Public License as published by the
11 ## Free Software Foundation; either version 2, or (at your option) any
12 ## later version.
13
14 ## XEmacs is distributed in the hope that it will be useful, but WITHOUT
15 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17 ## for more details.
18
19 ## You should have received a copy of the GNU General Public License
20 ## along with XEmacs; see the file COPYING.  If not, write to
21 ## the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ## Boston, MA 02111-1307, USA.
23
24 ## Synched up with: Not synched with FSF.
25
26 PROGNAME=@PROGNAME@
27
28 #define NOT_C_CODE
29 #include "config.h"
30
31 #ifdef PDUMP
32 DUMP_TARGET = ${PROGNAME}.dmp
33 EXE_TARGET  = ${PROGNAME}
34 ID_FILE     = dump-id.c
35 #else
36 DUMP_TARGET = ${PROGNAME}
37 EXE_TARGET  = temacs
38 ID_FILE     =
39 #endif
40
41 all: ${DUMP_TARGET}
42 .PHONY : all release dump-elc dump-elcs all-elc all-elcs lint
43
44 ## For performance and consistency, no built-in rules.
45 .SUFFIXES:
46 .SUFFIXES: .c .h .o .i .s .dep
47
48 #ifdef USE_GNU_MAKE
49 RECURSIVE_MAKE=$(MAKE)
50 #else
51 @SET_MAKE@
52 RECURSIVE_MAKE=@RECURSIVE_MAKE@
53 #endif
54
55 SHELL=/bin/sh
56 RM = rm -f
57
58 lispdir = ${srcdir}/../lisp/
59 moduledir = ${srcdir}/../modules/
60 libsrc = ../lib-src/
61 etcdir = ../etc/
62
63 ## Here are the things that we expect ../configure to edit.
64 prefix=@prefix@
65 srcdir=@srcdir@
66 blddir=@blddir@
67 version=@version@
68 CC=@XEMACS_CC@
69 CPP=@CPP@
70 CFLAGS=@CFLAGS@
71 CPPFLAGS=@CPPFLAGS@
72 LDFLAGS=@LDFLAGS@
73
74 c_switch_all=@c_switch_all@
75 ld_switch_all=@ld_switch_all@
76 ld_libs_all=@ld_libs_all@
77 ld_dynamic_link_flags=@ld_dynamic_link_flags@
78
79 extra_objs=@extra_objs@
80 LN_S=@LN_S@
81
82 ld_switch_shared=@ld_switch_shared@
83 start_files=@start_files@
84 start_flags=@start_flags@
85 LD=@ld@
86 lib_gcc=@lib_gcc@
87 ##libmcheck=@libmcheck@
88
89
90 ## With the traditional VPATH setting, it is not possible to
91 ## simultaneously compile in-place and in another directory.  The
92 ## mistaken definition is that *all* dependencies are searched for in
93 ## the VPATH directory, rather than just the dependencies that are not
94 ## themselves targets.  Thus, if there is an up-to-date .o file in the
95 ## in-place location, it will not get recompiled in the not-in-place
96 ## location.
97
98 ## The GNU Make "vpath" directive continues this tradition, but at
99 ## least lets you restrict the classes of files that it applies to.
100 ## This allows us to kludge around the problem.
101
102 #ifdef USE_GNU_MAKE
103 vpath %.c @srcdir@
104 vpath %.h @srcdir@
105 ## now list files that should NOT be searched in the srcdir.
106 ## This includes any .c or .h built from something else
107 ## (e.g. a .in file).
108 vpath config.h
109 vpath paths.h
110 vpath Emacs.ad.h
111 vpath sheap-adjust.h
112 vpath dump-id.c
113 #else
114 VPATH=@srcdir@
115 #endif
116
117 RM = rm -f
118
119 LWLIB_SRCDIR = ${srcdir}/../lwlib
120
121 #ifdef HAVE_X_WINDOWS
122 lwlib_libs = ../lwlib/liblw.a
123 lwlib_deps = $(lwlib_libs)
124 $(lwlib_libs) :
125         cd ../lwlib && $(RECURSIVE_MAKE)
126
127 x_objs=console-x.o device-x.o event-Xt.o frame-x.o\
128  glyphs-x.o objects-x.o redisplay-x.o select-x.o xgccache.o
129
130 #ifdef AIX4
131 LIBI18N = -li18n
132 #endif /* AIX4 */
133
134 X11_libs = $(LIBI18N)
135 #endif /* HAVE_X_WINDOWS */
136
137 #if defined (HEAP_IN_DATA) && !defined (PDUMP)
138 sheap_objs=sheap.o
139 #endif
140
141 #if defined (WIN32_NATIVE) || defined (CYGWIN)
142 win32_objs=win32.o xemacs_res.o
143 #endif
144
145 ## -Demacs is needed to make some files produce the correct version
146 ## for use in Emacs.
147
148 cppflags = $(CPPFLAGS) -Demacs -I. $(c_switch_all)
149 cflags   = $(CFLAGS) $(cppflags)
150 #if defined (WIN32_NATIVE) || defined (CYGWIN)
151 ldflags  = $(LDFLAGS) -mwindows $(ld_switch_all) $(ld_dynamic_link_flags)
152 #else
153 ldflags  = $(LDFLAGS) $(ld_switch_all) $(ld_dynamic_link_flags)
154 #endif
155
156 #ifdef SOLARIS2
157 %.o : %.c
158 #else
159 .c.o:
160 #endif
161         $(CC) -c $(cflags) $<
162
163 ## Create preprocessor output (debugging purposes only)
164 .c.i:
165 #ifdef __GNUC__
166         $(CC) -E $(cppflags) -o $@ $<
167 #else /* works on Solaris; what about other systems? */
168         $(CC) -P $(cppflags) $<
169 #endif /* compiler */
170
171 ## Create assembler output (debugging purposes only)
172 .c.s:
173         $(CC) -S -c $(cflags) $<
174
175 ## Create RTL files
176 %.c.rtl : %.c
177         $(CC) -dr -c $(cflags) $<
178
179 ## lastfile must follow all files whose initialized data areas should
180 ## be dumped as pure by dump-emacs.
181
182 ## NOTE: The last line cannot be all macros, because make will barf
183 ## if they all come out null.
184
185 objs=\
186  abbrev.o alloc.o blocktype.o buffer.o bytecode.o\
187  callint.o callproc.o casefiddle.o casetab.o chartab.o\
188  cmdloop.o cmds.o console.o console-stream.o\
189  data.o device.o dired.o doc.o doprnt.o dynarr.o\
190  editfns.o elhash.o emacs.o\
191  eval.o events.o $(extra_objs)\
192  event-stream.o extents.o faces.o\
193  fileio.o $(LOCK_OBJ) filemode.o floatfns.o fns.o font-lock.o\
194  frame.o general.o glyphs.o glyphs-eimage.o glyphs-widget.o\
195  gui.o gutter.o $(gui_objs) hash.o imgproc.o indent.o insdel.o intl.o\
196  keymap.o $(RTC_patch_objs) line-number.o lread.o lstream.o\
197  macros.o marker.o md5.o minibuf.o objects.o opaque.o\
198  print.o process.o profile.o\
199  rangetab.o redisplay.o redisplay-output.o regex.o\
200  search.o select.o $(sheap_objs) signal.o sound.o\
201  specifier.o strftime.o symbols.o syntax.o sysdep.o\
202  undo.o $(x_objs) widget.o window.o $(win32_objs)
203
204 obj_rtl = $(objs:.o=.c.rtl)
205
206 #ifdef REL_ALLOC
207 rallocdocsrc = ralloc.c
208 rallocobjs = ralloc.o
209 #endif
210
211 malloclib = $(libmcheck)
212 #ifndef SYSTEM_MALLOC
213 # ifdef GNU_MALLOC  /* GNU malloc */
214 #  ifdef ERROR_CHECK_MALLOC
215 #ifdef DOUG_LEA_MALLOC
216 mallocobjs = free-hook.o vm-limit.o
217 #else
218 mallocobjs = gmalloc.o free-hook.o vm-limit.o
219 #endif
220 mallocdocsrc = free-hook.c
221 #  else /* New GNU malloc, sans error checking */
222 #ifdef DOUG_LEA_MALLOC
223 mallocobjs = vm-limit.o
224 #else
225 mallocobjs = gmalloc.o vm-limit.o
226 #endif
227 mallocdocsrc =
228 #  endif /* ERROR_CHECK_MALLOC */
229 # else /* Older GNU malloc */
230 mallocobjs = malloc.o
231 mallocdocsrc =
232 # endif /* Older GNU malloc */
233 #else /* SYSTEM_MALLOC */
234 mallocobjs =
235 mallocdocsrc =
236 #ifdef USE_DEBUG_MALLOC
237 malloclib = -ldmalloc
238 #endif /* USE_DEBUG_MALLOC */
239 #endif /* SYSTEM_MALLOC */
240
241 #ifdef HAVE_X_WINDOWS
242
243 # ifdef EXTERNAL_WIDGET
244 external_widget_objs = ExternalShell.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
245
246 ## Now we try to figure out how to link a shared library.
247 ## If we cannot figure it out, leave EXTW_LINK undefined and a shared
248 ## library will not be created.
249
250 # ifdef USE_GCC
251 #  ifdef USG5
252 #   define EXTW_LINK(objs, output) $(CC) -shared objs -Xlinker -z -Xlinker text -o output
253 extw_link_beg = $(CC) -shared
254 extw_link_mid = -Xlinker -z -Xlinker text -o
255 extw_link_end =
256 ## I cannot figure out how to do shared a.out libraries, so just punt.
257 #  elif !defined (LINUX) || defined (__ELF__)
258 #   define EXTW_LINK(objs, output) $(CC) -shared objs -o output
259 extw_link_beg = $(CC) -shared
260 extw_link_mid = -o
261 extw_link_end =
262 #  endif
263 # elif defined (USG5)
264 #  if defined (IRIX)
265 #   define EXTW_LINK(objs, output) $(LD) -shared -g -check_registry ${TOOLROOT}/usr/lib/so_locations objs -o output
266 extw_link_beg = $(LD) -shared -g -check_registry ${TOOLROOT}/usr/lib/so_locations
267 extw_link_mid =  -o
268 extw_link_end =
269 #  else /* not IRIX */
270 #   define EXTW_LINK(objs, output) $(CC) -G objs -z text -o output
271 extw_link_beg = $(CC) -G
272 extw_link_mid = -z text -o
273 extw_link_end =
274 #  endif /* not IRIX */
275 # else /* not USG5 */
276 #  if defined (DEC_ALPHA) && defined (OSF1)
277 #   define EXTW_LINK(objs, output) $(LD) $(ldflags) $(ld_switch_shared) -d objs -o output $(LIBES)
278 extw_link_beg = $(LD) $(ldflags) $(ld_switch_shared) -d
279 extw_link_mid = -o
280 extw_link_end = $(LIBES)
281 #  else /* !(DEC_ALPHA && OSF1) */
282 #   define EXTW_LINK(objs, output) $(LD) -dc objs -assert pure-text -o output
283 extw_link_beg = $(LD) -dc
284 extw_link_mid = -assert pure-text -o
285 extw_link_end =
286 #  endif /* !(DEC_ALPHA && OSF1) */
287 # endif /* not USG5 */
288
289 #  ifdef LWLIB_USES_MOTIF
290 #    ifdef EXTW_LINK
291 motif_other_files = libextcli_Xm.a libextcli_Xm.so.1
292 #    else
293 motif_other_files = libextcli_Xm.a
294 #    endif
295 #endif /* LWLIB_USES_MOTIF */
296
297 #  ifdef EXTW_LINK
298 shared_other_files = libextcli_Xt.so.1 libextcli_Xlib.so.1
299 #  endif
300 other_files=\
301  ${motif_other_files}\
302  libextcli_Xt.a libextcli_Xlib.a\
303  ${shared_other_files}
304
305 all: ${other_files}
306 # endif /* EXTERNAL_WIDGET */
307
308 # if defined (HAVE_OFFIX_DND) || defined (HAVE_CDE)
309 dnd_objs = @dnd_objs@
310 # endif /* HAVE_OFFIX_DND || HAVE_CDE */
311
312 X11_objs =  EmacsFrame.o EmacsShell.o TopLevelEmacsShell.o TransientEmacsShell.o EmacsManager.o $(external_widget_objs) $(dnd_objs)
313 #endif /* HAVE_X_WINDOWS */
314
315 ## define otherobjs as list of object files that make-docfile
316 ## should not be told about.
317 otherobjs = lastfile.o $(mallocobjs) $(rallocobjs) $(X11_objs)
318 otherrtls = $(otherobjs:.o=.c.rtl)
319 othersrcs = $(otherobjs:.o=.c)
320
321 LIBES = $(lwlib_libs) $(malloclib) $(ld_libs_all) $(lib_gcc)
322
323 #ifdef I18N3
324 mo_dir = ${etcdir}
325 mo_file = ${mo_dir}emacs.mo
326 #endif
327
328 temacs_loadup = ./${EXE_TARGET} -nd -batch -l ${srcdir}/../lisp/loadup.el
329 dump_temacs   = ${temacs_loadup} dump
330 run_temacs    = ${temacs_loadup} run-temacs
331 debug_temacs = gdb ${EXE_TARGET}
332
333 release: ${EXE_TARGET} ${libsrc}DOC $(mo_file) ${other_files}
334 #ifdef CANNOT_DUMP
335         ln ${EXE_TARGET} ${PROGNAME}
336 #else
337         -if [ -w ${srcdir}/../lisp ]; then \
338           w=`pwd`; cd ${srcdir} && $${w}/${EXE_TARGET} -nd -batch -l ${srcdir}/../lisp/inc-vers; \
339         else true; fi
340         -./${EXE_TARGET} -nd -batch -l ${srcdir}/../lisp/loadup.el dump
341         touch release
342 #endif /* ! defined (CANNOT_DUMP) */
343
344 ${DUMP_TARGET}: ${EXE_TARGET} ${libsrc}DOC $(mo_file) ${other_files} update-elc.stamp
345 #ifdef HEAP_IN_DATA
346         @$(RM) $@ && touch SATISFIED
347         -${dump_temacs}
348         @if test -f $@;        then if test -f SATISFIED; then \
349                 echo "Testing for Lisp shadows ..."; \
350                 ./${PROGNAME} -batch -vanilla -f list-load-path-shadows; fi; \
351                 $(RM) SATISFIED; exit 0; fi; \
352         if test -f SATISFIED; then $(RM) SATISFIED; exit 1; fi; \
353         $(RM) $@; \
354         $(RECURSIVE_MAKE) $@;
355 #else
356         @$(RM) $@
357         ${dump_temacs}
358         @echo "Testing for Lisp shadows ..."
359         @./${PROGNAME} -batch -vanilla -f list-load-path-shadows
360 #endif
361
362 fastdump: ${EXE_TARGET}
363         @$(RM) ${DUMP_TARGET} && touch SATISFIED
364         -${dump_temacs}
365         @./${PROGNAME} -batch -vanilla -f list-load-path-shadows
366
367 FRC.update-elc.stamp :
368
369 update-elc.stamp : ${EXE_TARGET} FRC.update-elc.stamp
370         @touch NOBYTECOMPILE
371         ./${EXE_TARGET} -nd -batch -l ${srcdir}/../lisp/update-elc.el
372         @if test ! -f $@ -o -f NOBYTECOMPILE; then touch $@; fi; \
373          $(RM) NOBYTECOMPILE
374
375 obj_src = $(objs:.o=.c)
376
377 dortl : $(obj_rtl) $(otherrtls)
378         echo "(defvar source-files '(" > ${srcdir}/../lisp/source-files.el
379         (for a in $(obj_src) $(othersrcs);do \
380         echo -n "\""$$a"\"" >> ${srcdir}/../lisp/source-files.el ;\
381         done)
382         echo "))" >> ${srcdir}/../lisp/source-files.el
383
384 #ifdef DYNODUMP
385 dynodump_deps = ../dynodump/dynodump.so
386 ../dynodump/dynodump.so:
387         cd ../dynodump && $(RECURSIVE_MAKE)
388 #endif /* DYNODUMP */
389
390 ${libsrc}DOC: ${EXE_TARGET} update-elc.stamp
391         $(RM) ${libsrc}DOC; \
392         ${DUMPENV} ./${EXE_TARGET} -nd -batch -l ${srcdir}/../lisp/make-docfile.el -- \
393                 -o ${libsrc}DOC -d ${srcdir} -i ${libsrc}../site-packages \
394                 ${obj_src} ${mallocdocsrc} ${rallocdocsrc}
395
396 dump_elcs: dump-elcs
397
398 dump-elcs: ${EXE_TARGET}
399         -${DUMPENV} ./${EXE_TARGET} -nd -batch -l ${srcdir}/../lisp/update-elc.el
400
401 all-elc all-elcs:
402         cd .. && $(RECURSIVE_MAKE) all-elc
403
404 #ifdef I18N3
405
406 # if defined(SPARC) && !defined(USG)
407    xgettext=             /usr/openwin/bin/xgettext
408    xgettext_args=        -o emacs -m_X messages
409    msgfmt=               /usr/openwin/bin/msgfmt
410 # else
411    xgettext=             xgettext
412    xgettext_args=        -s -d emacs -M_X messages
413    msgfmt=               msgfmt
414 #endif
415
416 ${mo_dir}emacs.po: ${libsrc}make-msgfile ${libsrc}make-po ${objs}
417         ${libsrc}make-msgfile -o ${libsrc}messages ${objs}
418         cd ${libsrc} && ${xgettext} ${xgettext_args}
419         $(RM) ${mo_dir}emacs.po
420         cd ${libsrc} && ${libsrc}make-po -a ${mo_dir}emacs.po DOC
421
422 ${mo_dir}emacs.mo: ${mo_dir}emacs.po
423         cd ${mo_dir} && ${msgfmt} -o emacs.mo emacs.po
424
425 ${libsrc}make-msgfile:
426         cd ${libsrc} && $(RECURSIVE_MAKE) make-msgfile
427
428 ${libsrc}make-po:
429         cd ${libsrc} && $(RECURSIVE_MAKE) make-po
430
431 #endif /* I18N3 */
432
433 ${libsrc}make-dump-id:
434         cd ${libsrc} && $(RECURSIVE_MAKE) make-dump-id
435
436 ${libsrc}make-docfile:
437         cd ${libsrc} && $(RECURSIVE_MAKE) make-docfile
438
439 ## Lint Section
440 LINT.c=$(LINT) $(LINTFLAGS) $(LINTINCLUDES)
441 LINTFILES= $(objs:.o=.ln)
442 LINTINCLUDES = $(cppflags)
443 ## LINTFLAGS= -fd -m -p -s -u -v -x
444 LINTFLAGS= -fd -m -s -u -v -x
445 lint: $(LINTFILES)
446         $(LINT.c) $(LINTFILES)
447 ## end of Lint Section
448
449 link_deps=\
450  $(start_files) ${objs} ${otherobjs}\
451  $(lwlib_deps) $(dynodump_deps)
452
453 temacs_deps=\
454  $(link_deps) $(ID_FILE)
455
456 temacs_link_args=\
457  ${start_flags} ${ldflags} -I${srcdir} \
458  -o $@ ${start_files} ${objs} ${otherobjs} ${ID_FILE} ${LIBES}
459
460 ${EXE_TARGET}: $(temacs_deps)
461         $(LD) $(temacs_link_args)
462
463 dump-id.c: ${libsrc}make-dump-id ${link_deps}
464         ${libsrc}make-dump-id
465
466 .PHONY : run-temacs
467
468 run-temacs: ${EXE_TARGET}
469         -${run_temacs}
470
471 ## We have automated tests!!
472 testdir = ${srcdir}/../tests/automated
473 batch_test_emacs = -batch -l ${testdir}/test-harness.el -f batch-test-emacs ${testdir}
474
475 .PHONY: check check-temacs
476 check:
477         ./${PROGNAME} ${batch_test_emacs}
478 check-temacs:
479         ${run_temacs} ${batch_test_emacs}
480
481 ## Debugging targets:
482 ##
483 ## None of the debugging products work with a dumped xemacs binary,
484 ## because it does unexpected things like free memory that has been
485 ## malloc'ed in a *different* process!!  So we need to run these on
486 ## temacs.
487
488 ## RTC is Sun WorkShop's Run Time Checking, integrated with dbx
489 rtc_patch.o:
490         rtc_patch_area -o $@
491
492 rtcmacs: $(temacs_deps) rtc_patch.o
493         $(RM) ${EXE_TARGET}; $(RECURSIVE_MAKE) ${EXE_TARGET} RTC_patch_objs=rtc_patch.o
494         mv ${EXE_TARGET} rtcmacs
495
496 .PHONY: run-rtcmacs
497 run-rtcmacs: rtcmacs
498         dbx -q -C -c \
499         'dbxenv rtc_error_log_file_name /dev/fd/1; \
500         dbxenv suppress_startup_message 5.0; \
501         ignore POLL; \
502         check -access; \
503         suppress rui; \
504         runargs -batch -l ${srcdir}/../lisp/loadup.el run-temacs -q; \
505         run' rtcmacs
506
507 debug-temacs: ${EXE_TARGET}
508         -${debug_temacs}
509
510 ## Purify, Quantify, PureCoverage are software quality products from
511 ## Rational, formerly Pure Atria, formerly Pure Software.
512 ##
513 ## Purify
514 PURIFY_PROG  = purify
515 PURIFY_FLAGS =\
516 #ifdef PDUMP
517  -search-mmaps=yes\
518 #endif
519  -chain-length=32 -ignore-signals=SIGPOLL -threads=yes\
520  -cache-dir=${srcdir}/purecache -always-use-cache-dir=yes
521
522 PURIFY_LIBS  = -lpthread
523 puremacs: $(temacs_deps)
524         $(PURIFY_PROG) $(PURIFY_FLAGS) $(LD) $(temacs_link_args) $(PURIFY_LIBS)
525         cp $@ ${EXE_TARGET}
526
527 ## Quantify
528 #ifdef  QUANTIFY
529 QUANTIFY_PROG     = quantify
530 QUANTIFY_HOME     = `$(QUANTIFY_PROG) -print-home-dir`
531 QUANTIFY_FLAGS    = -cache-dir=./purecache -always-use-cache-dir=yes
532 cppflags         += -I$(QUANTIFY_HOME)
533 temacs_link_args += $(QUANTIFY_HOME)/quantify_stubs.a
534
535 quantmacs: $(temacs_deps)
536         $(QUANTIFY_PROG) $(QUANTIFY_FLAGS) $(LD) $(temacs_link_args)
537         cp $@ ${EXE_TARGET}
538 #endif /* QUANTIFY */
539
540
541 PURECOV_PROG=purecov
542 covmacs: $(temacs_deps)
543         $(PURECOV_PROG) $(LD) $(temacs_link_args)
544
545
546 TopLevelEmacsShell.o : ${srcdir}/EmacsShell-sub.c config.h xintrinsicp.h EmacsShellP.h
547         $(CC) -c $(cflags) -DDEFINE_TOP_LEVEL_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
548         mv EmacsShell-sub.o TopLevelEmacsShell.o
549
550 TopLevelEmacsShell.c.rtl : ${srcdir}/EmacsShell-sub.c config.h xintrinsicp.h EmacsShellP.h
551         $(CC) -dr -c $(cflags) -DDEFINE_TOP_LEVEL_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
552         mv EmacsShell-sub.c.rtl TopLevelEmacsShell.c.rtl
553
554 TransientEmacsShell.o : ${srcdir}/EmacsShell-sub.c TopLevelEmacsShell.o config.h xintrinsicp.h EmacsShellP.h
555         $(CC) -c $(cflags) -DDEFINE_TRANSIENT_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
556         mv EmacsShell-sub.o TransientEmacsShell.o
557
558 TransientEmacsShell.c.rtl : ${srcdir}/EmacsShell-sub.c TopLevelEmacsShell.o config.h xintrinsicp.h EmacsShellP.h
559         $(CC) -dr -c $(cflags) -DDEFINE_TRANSIENT_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
560         mv EmacsShell-sub.c.rtl TransientEmacsShell.c.rtl
561
562 ## The above rules are subject to a race condition if using a parallel make.
563 TransientEmacsShell.o : TopLevelEmacsShell.o
564 TransientEmacsShell.c.rtl : TopLevelEmacsShell.c.rtl
565
566 ## Position-independent code for shared library creation
567 #if USE_GCC
568 pic_arg = -fpic
569 #elif defined (IRIX)
570 pic_arg = -KPIC
571 # else
572 pic_arg = -K pic
573 #endif
574
575 #ifdef EXTERNAL_WIDGET
576
577 external_client_motif_objs_shared    = ExternalClient-Xm-shared.o extw-Xt-shared.o extw-Xlib-shared.o
578 external_client_xt_objs_shared       = ExternalClient-Xt-shared.o extw-Xt-shared.o extw-Xlib-shared.o
579 external_client_xlib_objs_shared     = ExternalClient-Xlib-shared.o extw-Xlib-shared.o
580 external_client_motif_objs_nonshared = ExternalClient-Xm-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
581 external_client_xt_objs_nonshared    = ExternalClient-Xt-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
582 external_client_xlib_objs_nonshared  = ExternalClient-Xlib-nonshared.o extw-Xlib-nonshared.o
583
584 ## Add dependencies so things work right with a parallel make
585 ExternalClient-Xm-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-shared.o ExternalClient-Xm-nonshared.o
586         $(CC) -c $(pic_arg) $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
587         mv ExternalClient.o ExternalClient-Xm-shared.o
588
589 ExternalClient-Xt-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
590         $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient.c
591         mv ExternalClient.o ExternalClient-Xt-shared.o
592
593 ExternalClient-Xlib-shared.o: ${srcdir}/ExternalClient-Xlib.c ExternalClient-Xlib-nonshared.o
594         $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient-Xlib.c
595         mv ExternalClient-Xlib.o ExternalClient-Xlib-shared.o
596
597 ExternalClient-Xm-nonshared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
598         $(CC) -c $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
599         mv ExternalClient.o ExternalClient-Xm-nonshared.o
600
601 ExternalClient-Xt-nonshared.o: ${srcdir}/ExternalClient.c
602         $(CC) -c $(cflags) ${srcdir}/ExternalClient.c
603         mv ExternalClient.o ExternalClient-Xt-nonshared.o
604
605 ExternalClient-Xlib-nonshared.o: ${srcdir}/ExternalClient-Xlib.c
606         $(CC) -c $(cflags) ${srcdir}/ExternalClient-Xlib.c
607         mv ExternalClient-Xlib.o ExternalClient-Xlib-nonshared.o
608
609 ## We compile the common files twice (once with PIC and once without)
610 ## because on some systems, compiling with PIC but not linking into
611 ## a shared library messes things up.
612
613 extw-Xt-shared.o: ${srcdir}/extw-Xt.c extw-Xt-nonshared.o
614         $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xt.c
615         mv extw-Xt.o extw-Xt-shared.o
616
617 extw-Xlib-shared.o: ${srcdir}/extw-Xlib.c extw-Xlib-nonshared.o
618         $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xlib.c
619         mv extw-Xlib.o extw-Xlib-shared.o
620
621 extw-Xt-nonshared.o: ${srcdir}/extw-Xt.c
622         $(CC) -c $(cflags) ${srcdir}/extw-Xt.c
623         mv extw-Xt.o extw-Xt-nonshared.o
624
625 extw-Xlib-nonshared.o: ${srcdir}/extw-Xlib.c
626         $(CC) -c $(cflags) ${srcdir}/extw-Xlib.c
627         mv extw-Xlib.o extw-Xlib-nonshared.o
628
629 libextcli_Xm.a: ${external_client_motif_objs_nonshared}
630         ar r libextcli_Xm.a ${external_client_motif_objs_nonshared}
631
632 libextcli_Xt.a: ${external_client_xt_objs_nonshared}
633         ar r libextcli_Xt.a ${external_client_xt_objs_nonshared}
634
635 libextcli_Xlib.a: ${external_client_xlib_objs_nonshared}
636         ar r libextcli_Xlib.a ${external_client_xlib_objs_nonshared}
637
638 #ifdef EXTW_LINK
639
640 libextcli_Xm.so.1: ${external_client_motif_objs_shared}
641         ${extw_link_beg} ${external_client_motif_objs_shared} ${extw_link_mid} libextcli_Xm.so.1 ${extw_link_end}
642
643 libextcli_Xt.so.1: ${external_client_xt_objs_shared}
644         ${extw_link_beg} ${external_client_xt_objs_shared} ${extw_link_mid} libextcli_Xt.so.1 ${extw_link_end}
645
646 libextcli_Xlib.so.1: ${external_client_xlib_objs_shared}
647         ${extw_link_beg} ${external_client_xlib_objs_shared} ${extw_link_mid} libextcli_Xlib.so.1 ${extw_link_end}
648
649 #endif /* EXTW_LINK */
650
651 #endif /* EXTERNAL_WIDGET */
652
653 config.h: ${srcdir}/config.h.in
654 Emacs.ad.h: ${srcdir}/${etcdir}Emacs.ad
655
656 config.h sheap-adjust.h paths.h Emacs.ad.h :
657         @echo "The file $@ needs to be re-generated."
658         @echo "Please run a make in the top level directory."
659         @echo "Consult the file \`INSTALL' for instructions for building XEmacs."
660         @exit 1
661
662 ## Some machines have alloca built-in.
663 ## They should define HAVE_ALLOCA, or may just let alloca.s
664 ## be used but generate no code.
665 ## Some have it written in assembler in alloca.s.
666 ## Some use the C version in alloca.c (these define C_ALLOCA in config.h).
667
668
669 #ifdef C_ALLOCA
670 ## We could put something in alloca.c to #define free and malloc
671 ## whenever emacs was #defined, but that's not appropriate for all
672 ## users of alloca in Emacs.  Check out ../lib-src/getopt.c.  */
673
674 alloca.o : ${srcdir}/alloca.c
675         $(CC) -c -Dfree=xfree -Dmalloc=xmalloc $(cflags) ${srcdir}/alloca.c
676 #else
677 #ifndef HAVE_ALLOCA
678 alloca.o : ${srcdir}/alloca.s config.h
679 ## $(CPP) is cc -E, which may get confused by filenames
680 ## that do not end in .c.  So copy file to a safe name.  */
681 ##      cp ${srcdir}/alloca.s allocatem.c
682 ## Remove any ^L, blank lines, and preprocessor comments,
683 ## since some assemblers barf on them.  Use a different basename for the
684 ## output file, since some stupid compilers (Green Hill) use that
685 ## name for the intermediate assembler file.
686         $(CPP) $(cppflags) allocatem.c | \
687         sed -e 's/\f//' -e 's/^#.*//' | \
688         sed -n -e '/^..*$$/p' > allocax.s
689         @$(RM) alloca.o
690 ## Xenix, in particular, needs to run assembler via cc.
691         $(CC) -c allocax.s
692         mv allocax.o alloca.o
693         $(RM) allocax.s allocatem.c
694 #endif /* HAVE_ALLOCA */
695 #endif /* ! defined (C_ALLOCA) */
696
697 #ifdef HAVE_NATIVE_SOUND
698 sound_cflags=@sound_cflags@
699 sunplay.o: ${srcdir}/sunplay.c
700         $(CC) -c  $(sound_cflags) $(cflags) ${srcdir}/sunplay.c
701 hpplay.o: ${srcdir}/hpplay.c
702         $(CC) -c -Demacs $(sound_cflags) $(cflags) ${srcdir}/hpplay.c
703 #endif /* HAVE_NATIVE_SOUND */
704
705 xemacs_res.o: ${srcdir}/../nt/xemacs.rc
706         windres --include-dir ${srcdir}/../nt -i ${srcdir}/../nt/xemacs.rc -o $@
707
708 ## System-specific programs to be made.
709 ## ${other_files}, $(objects_system) and $(objects_machine)
710 ## select which of these should be compiled.  */
711
712 .PHONY: mostlyclean clean distclean realclean versionclean extraclean
713 mostlyclean:
714         $(RM) temacs puremacs quantmacs *.o *.i  \
715           core temacs.exe sheap-adjust.h
716 clean: mostlyclean versionclean
717         $(RM) libextcli* update-elc.stamp
718 ## This is used in making a distribution.
719 ## Do not use it on development directories!
720 distclean: clean
721         $(RM) config.h paths.h Emacs.ad.h \
722           GNUmakefile Makefile Makefile.in TAGS ${PROGNAME}.*
723 realclean: distclean
724 versionclean:
725         $(RM) ${EXE_TARGET} ${DUMP_TARGET} ${libsrc}DOC
726 extraclean: realclean
727         $(RM) *~ \#* m/*~ m/\#* s/*~ s/\#*
728
729 .PHONY : lock unlock
730 SOURCES = *.[chm] *.pswm [sm]/* COPYING paths.h.in Makefile.in.in \
731         config.h.in README COPYING ChangeLog
732 unlock:
733         chmod u+w $(SOURCES)
734
735 relock:
736         chmod -w $(SOURCES)
737
738 ## Header files for ellcc
739 #ifdef HAVE_SHLIB
740 MAKEPATH=../lib-src/make-path
741 install: ${PROGNAME}
742         ${MAKEPATH} ${archlibdir}/include ${archlibdir}/include/m ${archlibdir}/include/s
743         -@echo "Copying include files for ellcc..."
744         -@hdir=`pwd`; \
745         cd ${srcdir}; hdrdir2=`pwd`; cd $$hdir; \
746         test "$$hdrdir2" != "$$hdir" && hdir="$$hdir $$hdrdir2"; \
747         (for thisdir in $$hdir; do \
748                 cd $$thisdir && \
749                 (hdrtars=; \
750                 for hdrfile in *.h; do \
751                         hdrtars="$$hdrtars $$hdrfile"; \
752                 done; \
753                 test -d s && hdrtars="$$hdrtars s/*"; \
754                 test -d m && hdrtars="$$hdrtars m/*"; \
755                 test -n "$$hdrtars" && (tar cf - $$hdrtars) | \
756                         (cd ${archlibdir}/include && umask 022 && tar xf -); \
757                 chmod 755 ${archlibdir}/include; \
758                 test -d ${archlibdir}/include/s && \
759                   chmod 755 ${archlibdir}/include/s; \
760                 test -d ${archlibdir}/include/m && \
761                   chmod 755 ${archlibdir}/include/s;) \
762         done)
763 #endif
764
765 ## Dependency processing using home-grown script, not makedepend
766 .PHONY: depend
767 FRC.depend:
768 depend: FRC.depend
769         cd ${srcdir} && $(RM) depend.tmp && \
770         perl ./make-src-depend > depend.tmp && \
771         if cmp -s depend depend.tmp; \
772         then $(RM) depend.tmp; \
773         else $(RM) depend && mv depend.tmp depend; \
774         fi