Show
Ignore:
Timestamp:
2004年11月18日 08時05分19秒 (4 years ago)
Author:
miyoshi
Message:

Sync up.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vendor/emacs-21.3.50/Makefile.in

    r3533 r3551  
    5252# make extraclean 
    5353#      Still more severe - delete backup and autosave files, too. 
     54# 
     55# make bootstrap 
     56#      Recompiles all the Emacs Lisp files using the latest source, 
     57#      then rebuilds Emacs. 
     58# 
     59# make bootfast 
     60#      Recompiles changed Emacs Lisp files using the latest C source, 
     61#      then rebuilds Emacs.  This is faster than `make bootstrap' 
     62#      but once in a while an old .elc file can cause trouble. 
    5463 
    5564SHELL = /bin/sh 
     
    727736 
    728737.PHONY: bootstrap 
     738.PHONY: bootstrap-build 
     739.PHONY: bootfast 
    729740.PHONY: maybe_bootstrap 
    730741 
     
    738749        fi 
    739750 
    740 bootstrap: bootstrap-clean-before info FRC 
     751bootstrap: bootstrap-clean-before info bootstrap-build FRC 
     752 
     753bootfast: bootstrap-clean-before-fast info bootstrap-build FRC 
     754 
     755bootstrap-build: FRC 
    741756        (cd lisp; $(MAKE) $(MFLAGS) bootstrap-prepare) 
    742757        (cd src; $(MAKE) $(MFLAGS) bootstrap) 
     
    747762 
    748763### Used for `bootstrap' to avoid deleting existing dumped Emacs executables. 
    749 bootstrap-clean-before: FRC 
     764bootstrap-clean-before: bootstrap-clean-before-fast FRC 
     765        (cd lisp;     $(MAKE) $(MFLAGS) bootstrap-clean) 
     766 
     767### Used for `bootfast' to avoid deleting existing dumped Emacs executables 
     768### and compiled .elc files. 
     769bootstrap-clean-before-fast: FRC 
    750770        (cd src;      $(MAKE) $(MFLAGS) mostlyclean) 
    751771        (cd oldXMenu; $(MAKE) $(MFLAGS) clean)