diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-10-01 17:10:51 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-10-01 17:10:51 +0000 |
commit | c45dbde8d652bbb0178f5bde4563c348d63e6c87 (patch) | |
tree | f705de4cf1994290cd0c68d1d1d5d370596d7e76 /lisp/makefile.w32-in | |
parent | 0a10297a064822f10484f3c08d03f18b3fd5a3e4 (diff) | |
download | emacs-c45dbde8d652bbb0178f5bde4563c348d63e6c87.tar.gz |
Add "no-byte-compile: t" to subdirs.el.
Diffstat (limited to 'lisp/makefile.w32-in')
-rw-r--r-- | lisp/makefile.w32-in | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 7583407f997..31c39737c99 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -2,17 +2,17 @@ # Copyright (c) 2000-2001 Free Software Foundation, Inc. # # This file is part of GNU Emacs. -# +# # GNU Emacs is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. -# +# # GNU Emacs is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with GNU Emacs; see the file COPYING. If not, write to the # Free Software Foundation, Inc., 59 Temple Place - Suite 330, @@ -197,7 +197,8 @@ subdirs.el: update-subdirs: update-subdirs-$(SHELLTYPE) update-subdirs-CMD: doit - echo ;; In load-path, after this directory should come> subdirs.el + echo ;; -*- no-byte-compile: t -*->subdirs.el + echo ;; In load-path, after this directory should come>> subdirs.el echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el @for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el @@ -292,7 +293,7 @@ compile-calc: compile-calc-$(SHELLTYPE) compile-calc-CMD: for %f in ($(lisp)/calc/*.el) do $(emacs) -f batch-byte-compile %f -compile-calc-SH: +compile-calc-SH: for el in $(lisp)/calc/*.el; do \ echo Compiling $$el; \ $(emacs) -f batch-byte-compile $$el || exit 1; \ @@ -367,6 +368,6 @@ install: # # Maintenance -# +# clean: - $(DEL) *~ |