Mercurial > hg > xemacs-beta
diff nt/xemacs.mak @ 528:ef4d2466a29c
[xemacs-hg @ 2001-05-10 09:59:45 by ben]
implement user-name-all-completions under Windows.
xemacs.mak: need another lib (netapi32.lib) for user-name-all-completions.
emacs.c: create new function force-debugging-signal (only when DEBUG_XEMACS)
to breakpoint or abort to the debugger.
mule\mule-coding.el, file-coding.c, file-coding.h, lisp.h: move
coding-system-charset to lisp to avoid doc warning.
autoload.el, packages.el, startup.el, update-elc-2.el, update-elc.el:
Rewrite much of the bootstrapping process to be more robust,
and in particular to rebuild the auto-autoloads and
custom-loads files no matter what state (including missing)
they're currently in.
xemacs.mak: remove autoload-building target.
Makefile.in.in: remove autoload targets.
author | ben |
---|---|
date | Thu, 10 May 2001 09:59:57 +0000 |
parents | cd662ad69f40 |
children | 9a775fb11bb7 |
line wrap: on
line diff
--- a/nt/xemacs.mak Thu May 10 08:09:23 2001 +0000 +++ b/nt/xemacs.mak Thu May 10 09:59:57 2001 +0000 @@ -851,7 +851,8 @@ TEMACS_SRC=$(SRC) TEMACS_LIBS=$(LASTFILE) $(LWLIB) $(X_LIBS) $(MSW_LIBS) \ oldnames.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib \ - shell32.lib wsock32.lib winmm.lib winspool.lib ole32.lib uuid.lib $(LIBC_LIB) + shell32.lib wsock32.lib netapi32.lib winmm.lib winspool.lib ole32.lib \ + uuid.lib $(LIBC_LIB) TEMACS_LFLAGS=-nologo $(LIBRARIES) $(DEBUG_FLAGS) -base:0x1000000\ -stack:0x800000 $(TEMACS_ENTRYPOINT) -subsystem:windows\ -pdb:$(TEMACS_DIR)\temacs.pdb -map:$(TEMACS_DIR)\temacs.map \ @@ -1400,7 +1401,7 @@ # use this rule to build the complete system all: installation $(OUTDIR)\nul $(LASTFILE) $(LWLIB) \ $(LIB_SRC_TOOLS) $(TEMACS) update-elc $(DOC) $(PROGNAME) \ - update-elc-2 update-auto-and-custom info + update-elc-2 info temacs: $(LASTFILE) $(TEMACS) @@ -1592,19 +1593,5 @@ update-elc-2: $(XEMACS_BATCH) -l update-elc-2.el -f batch-update-elc-2 $(LISP) -# Update auto-autoloads.el and custom-load.el, similar to what -# XEmacs.rules does for xemacs-packages. This used to delete -# auto-autoloads.el first, but that's a bad idea, because it forces -# rebuilding from scratch, which is time-consuming; and the autoload -# code is specifically written to do in-place updating. However, if -# your auto-autoload file is messed up and you want it rebuilt from -# scratch, delete it from the command line and then nmake with this -# target. -update-auto-and-custom: -# Combine into one invocation to avoid repeated startup penalty. - $(XEMACS_BATCH) -l autoload -f batch-update-one-directory $(LISP) -f batch-byte-compile-one-file $(LISP)\auto-autoloads.el -l cus-dep -f Custom-make-one-dependency $(LISP) -f batch-byte-compile-one-file $(LISP)\custom-load.el - $(DEL) $(LISP)\auto-autoloads.el~ - $(DEL) $(LISP)\custom-load.el~ - # DO NOT DELETE THIS LINE -- make depend depends on it.