]> code.delx.au - gnu-emacs/blobdiff - src/Makefile.in
(add_properties, remove_properties, set_properties):
[gnu-emacs] / src / Makefile.in
index 022aec97011a31e5e8f5490fcb20d3d8524458be..a097849e6957abf0e4381cc30b0ac6c387502128 100644 (file)
@@ -30,6 +30,7 @@ LN_S=@LN_S@
 
 # On Xenix and the IBM RS6000, double-dot gets screwed up.
 dot = .
+dotdot = ${dot}${dot}
 lispsource = ${srcdir}/$(dot)$(dot)/lisp/
 libsrc = $(dot)$(dot)/lib-src/
 etc = $(dot)$(dot)/etc/
@@ -53,8 +54,8 @@ C_SWITCH_SYSTEM=
 /* just to be sure the sh is used */
 SHELL=/bin/sh
 
+#define THIS_IS_MAKEFILE
 #define NO_SHORTNAMES
-#define THIS_IS_YMAKEFILE
 #define NOT_C_CODE
 #include "config.h"
 
@@ -240,6 +241,7 @@ SHORT= shortnames
 #endif
 
 #ifdef USE_X_TOOLKIT
+#define USE_@X_TOOLKIT_TYPE@
 TOOLKIT_DEFINES = -DUSE_@X_TOOLKIT_TYPE@
 #else
 TOOLKIT_DEFINES =
@@ -339,10 +341,18 @@ LIBXTR6 = -lSM -lICE
 #define LIBXMU -lXmu
 #endif
 
+#ifdef LIBXT_STATIC
+/* We assume the config files have defined STATIC_OPTION
+   since that might depend on the operating system.
+   (Don't forget you need different definitions with and without __GNUC__.)  */
+LIBXT= STATIC_OPTION $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext STATIC_OPTION 
+#else /* not LIBXT_STATIC */
 LIBXT= $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext
-#else
+#endif /* not LIBXT_STATIC */
+
+#else /* not USE_X_TOOLKIT */
 LIBXT=
-#endif
+#endif /* not USE_X_TOOLKIT */
 
 #ifdef HAVE_X11
 /* LD_SWITCH_X_DEFAULT comes after everything else that specifies
@@ -604,12 +614,14 @@ otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj)
 
    Note that this list should not include lisp files which might not
    be present, like site-load.el and site-init.el; this makefile
-   expects them all to be either present or buildable.  */
+   expects them all to be either present or buildable.
+
+   Always update shortlisp as well as this variable.  */
+
 lisp= \
        ${lispsource}abbrev.elc \
        ${lispsource}buff-menu.elc \
        ${lispsource}byte-run.elc \
-       ${lispsource}c-mode.elc \
        ${lispsource}files.elc \
        ${lispsource}fill.elc \
        ${lispsource}format.elc \
@@ -623,6 +635,7 @@ lisp= \
        ${lispsource}isearch.elc \
        ${lispsource}lisp-mode.elc \
        ${lispsource}lisp.elc \
+       ${lispsource}loadup.el \
        ${lispsource}loaddefs.el \
        ${lispsource}map-ynp.elc \
        ${lispsource}page.elc \
@@ -635,21 +648,58 @@ lisp= \
        ${lispsource}subr.elc \
        ${lispsource}text-mode.elc \
        ${lispsource}vc-hooks.elc \
+       ${lispsource}ediff-hook.elc \
        VMS_SUPPORT \
        MSDOS_SUPPORT \
        WINNT_SUPPORT \
        ${lispsource}window.elc \
        ${lispsource}version.el
 
+/* These are relative file names for the Lisp files
+   that are loaded unconditionally.  This is used in make-docfile.
+   It need not contain the files that are loaded conditionally
+   because SOME_MACHINE_LISP has those.  */
+shortlisp= \
+       ../lisp/abbrev.elc \
+       ../lisp/buff-menu.elc \
+       ../lisp/byte-run.elc \
+       ../lisp/files.elc \
+       ../lisp/fill.elc \
+       ../lisp/format.elc \
+       ../lisp/help.elc \
+       ../lisp/indent.elc \
+       ../lisp/isearch.elc \
+       ../lisp/lisp-mode.elc \
+       ../lisp/lisp.elc \
+       ../lisp/loadup.el \
+       ../lisp/loaddefs.el \
+       ../lisp/map-ynp.elc \
+       ../lisp/page.elc \
+       ../lisp/paragraphs.elc \
+       ../lisp/paths.el \
+       ../lisp/register.elc \
+       ../lisp/replace.elc \
+       ../lisp/simple.elc \
+       ../lisp/startup.elc \
+       ../lisp/subr.elc \
+       ../lisp/text-mode.elc \
+       ../lisp/vc-hooks.elc \
+       ../lisp/ediff-hook.elc \
+       ../lisp/window.elc \
+       ../lisp/version.el
+
 /* Lisp files that may or may not be used.
-   We must unconditionally put them in the DOC file.  */
-SOME_MACHINE_LISP =  ${lispsource}faces.elc ${lispsource}facemenu.elc \
-  ${lispsource}float-sup.elc ${lispsource}frame.elc \
-  ${lispsource}menu-bar.elc ${lispsource}mouse.elc \
-  ${lispsource}select.elc ${lispsource}scroll-bar.elc \
-  ${lispsource}vmsproc.elc ${lispsource}vms-patch.elc \
-  ${lispsource}ls-lisp.elc ${lispsource}dos-fns.elc \
-  ${lispsource}winnt.elc
+   We must unconditionally put them in the DOC file. 
+   We use ../lisp/ to start the file names
+   to reduce the size of the argument list for make-docfile
+   for the sake of systems which can't handle large ones.  */
+SOME_MACHINE_LISP =  ${dotdot}/lisp/faces.elc ${dotdot}/lisp/facemenu.elc \
+  ${dotdot}/lisp/float-sup.elc ${dotdot}/lisp/frame.elc \
+  ${dotdot}/lisp/menu-bar.elc ${dotdot}/lisp/mouse.elc \
+  ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \
+  ${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \
+  ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \
+  ${dotdot}/lisp/winnt.elc
 
 /* Construct full set of libraries to be linked.
    Note that SunOS needs -lm to come before -lc; otherwise, you get
@@ -698,7 +748,8 @@ emacs: temacs ${etc}DOC ${lisp}
 ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp}
        -rm -f ${etc}DOC
        ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
-       ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${lisp}
+       cd 
+       ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
 
 ${libsrc}make-docfile:
        cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
@@ -713,8 +764,11 @@ temacs: MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) $(OLDXMENU) ${obj} ${ot
     -o temacs ${STARTFILES} ${obj} ${otherobj}  \
     OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES}
 
+/* We don't use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
+   often contain options that have to do with using Emacs's crt0,
+   which are only good with temacs.  */
 prefix-args: prefix-args.c $(config_h)
-       $(CC) $(ALL_CFLAGS) ${srcdir}/prefix-args.c -o prefix-args
+       $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
 
 /* These are needed for C compilation, on the systems that need them */
 #ifdef NEED_CPP
@@ -887,7 +941,7 @@ keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h \
    commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
    systty.h systime.h dispextern.h intervals.h blockinput.h xterm.h $(config_h)
 keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
-   $(config_h) 
+   puresize.h $(config_h) 
 lastfile.o: lastfile.c  $(config_h)
 macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h $(config_h)
 malloc.o: malloc.c $(config_h)
@@ -947,7 +1001,7 @@ hftctl.o: hftctl.c $(config_h)
 
 alloc.o: alloc.c frame.h window.h buffer.h  puresize.h syssignal.h keyboard.h \
  blockinput.h $(config_h) INTERVAL_SRC
-bytecode.o: bytecode.c buffer.h $(config_h)
+bytecode.o: bytecode.c buffer.h syntax.h $(config_h)
 data.o: data.c buffer.h puresize.h syssignal.h keyboard.h $(config_h)
 eval.o: eval.c commands.h keyboard.h blockinput.h $(config_h)
 floatfns.o: floatfns.c $(config_h)
@@ -1002,7 +1056,7 @@ relock:
 ctagsfiles = [a-zA-Z]*.[hc]
 lisptagsfiles = ../lisp/[a-zA-Z]*.el
 TAGS: $(ctagsfiles)
-       export DIR=`pwd`; cd ${srcdir}; \
+       export DIR; DIR=`pwd`; cd ${srcdir}; \
        $$DIR/../lib-src/etags --include=../lisp/TAGS \
        --regex='/[     ]*DEFVAR_[A-Z_  (]+"\([^"]+\)"/' $(ctagsfiles)
 ${lispsource}TAGS: ${lispsource}$(lisptagsfiles)