diff options
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index cbe7718981e..dd02aaab4c5 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -176,8 +176,9 @@ $(lisp)/finder-inf.el: # Note that we set no-update-autoloads in _generated_ leim files. # If you want to allow autoloads in such files, remove that, # and make this depend on leim. -autoloads .PHONY: $(lisp)/loaddefs.el -$(lisp)/loaddefs.el: $(LOADDEFS) +autoloads .PHONY: $(lisp)/loaddefs.el $(LOADDEFS) + +$(lisp)/loaddefs.el: @echo Directories for loaddefs: ${SUBDIRS_ALMOST} $(AM_V_GEN)$(emacs) -l autoload \ --eval '(setq autoload-ensure-writable t)' \ @@ -185,6 +186,10 @@ $(lisp)/loaddefs.el: $(LOADDEFS) --eval '(setq generated-autoload-file (expand-file-name (unmsys--file-name "$@")))' \ -f batch-update-autoloads ${SUBDIRS_ALMOST} + +temacs-loaddefs: + ../src/temacs --load-temacs ${SUBDIRS_ALMOST} + # autoloads only runs when loaddefs.el is nonexistent, although it # generates a number of different files. Provide a force option to enable # regeneration of all these files. |