diff options
author | Glenn Morris <rgm@gnu.org> | 2009-10-15 06:04:11 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-10-15 06:04:11 +0000 |
commit | 9fc3db2b6b2e661000055f06e36dca6d6ff64f67 (patch) | |
tree | 05e8a7bf7e5dde2e04a6c6197d80c91dbb9ea951 /lib-src/makefile.w32-in | |
parent | 0b44494a3c0f8bf9d2889c76956e49dcea24a20f (diff) | |
download | emacs-9fc3db2b6b2e661000055f06e36dca6d6ff64f67.tar.gz |
(echolisp): New rule.
(clean): Delete echolisp.tmp.
Diffstat (limited to 'lib-src/makefile.w32-in')
-rw-r--r-- | lib-src/makefile.w32-in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index ee5f1d7710c..7fab27d98a9 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in @@ -1,6 +1,6 @@ # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API. -# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -# 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, +# 2009 Free Software Foundation, Inc. # This file is part of GNU Emacs. @@ -289,6 +289,11 @@ lisp2 = \ $(lispsource)window.elc \ $(lispsource)version.el +# Used by batch-update-autoloads. +echolisp: + @echo $(lisp1) + @echo $(lisp2) + # This is needed the first time we build the tree, since temacs.exe # does not exist yet, and the DOC rule needs it to rebuild DOC whenever # Emacs is rebuilt. @@ -348,6 +353,7 @@ clean: - $(DEL) getopt.h - $(DEL_TREE) $(OBJDIR) - $(DEL) stamp_BLD + - $(DEL) echolisp.tmp distclean: cleanall - $(DEL) TAGS |