1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-16 17:19:41 +00:00

Move comment so it does not get printed every time the rule runs.

This commit is contained in:
Glenn Morris 2009-09-16 03:10:17 +00:00
parent 0307c7d29f
commit 124649922f

View File

@ -1,6 +1,6 @@
# Maintenance productions for the Lisp directory # Maintenance productions for the Lisp directory
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
# 2008, 2009 Free Software Foundation, Inc. # 2009 Free Software Foundation, Inc.
# This file is part of GNU Emacs. # This file is part of GNU Emacs.
@ -1286,10 +1286,10 @@ ELCFILES = \
# (e.g. src/Makefile.in may have a dependency for ../lisp/foo.elc where we # (e.g. src/Makefile.in may have a dependency for ../lisp/foo.elc where we
# only know of $(lisp)/foo.elc). So instead we provide a direct way for # only know of $(lisp)/foo.elc). So instead we provide a direct way for
# src/Makefile.in to rebuild a particular Lisp file, no questions asked. # src/Makefile.in to rebuild a particular Lisp file, no questions asked.
# Use byte-compile-refresh-preloaded to try and work around some of
# the most common problems of not bootstrapping from a clean state.
compile-onefile: compile-onefile:
@echo Compiling $(THEFILE) @echo Compiling $(THEFILE)
# Use byte-compile-refresh-preloaded to try a work around some of
# the most common bootstrapping problems.
@$(emacs) -l bytecomp.el -f byte-compile-refresh-preloaded $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE) @$(emacs) -l bytecomp.el -f byte-compile-refresh-preloaded $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE)
# Files MUST be compiled one by one. If we compile several files in a # Files MUST be compiled one by one. If we compile several files in a