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