Changeset 3551 for vendor/emacs-21.3.50/Makefile.in
- Timestamp:
- 2004年11月18日 08時05分19秒 (4 years ago)
- Files:
-
- vendor/emacs-21.3.50/Makefile.in (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
vendor/emacs-21.3.50/Makefile.in
r3533 r3551 52 52 # make extraclean 53 53 # 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. 54 63 55 64 SHELL = /bin/sh … … 727 736 728 737 .PHONY: bootstrap 738 .PHONY: bootstrap-build 739 .PHONY: bootfast 729 740 .PHONY: maybe_bootstrap 730 741 … … 738 749 fi 739 750 740 bootstrap: bootstrap-clean-before info FRC 751 bootstrap: bootstrap-clean-before info bootstrap-build FRC 752 753 bootfast: bootstrap-clean-before-fast info bootstrap-build FRC 754 755 bootstrap-build: FRC 741 756 (cd lisp; $(MAKE) $(MFLAGS) bootstrap-prepare) 742 757 (cd src; $(MAKE) $(MFLAGS) bootstrap) … … 747 762 748 763 ### Used for `bootstrap' to avoid deleting existing dumped Emacs executables. 749 bootstrap-clean-before: FRC 764 bootstrap-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. 769 bootstrap-clean-before-fast: FRC 750 770 (cd src; $(MAKE) $(MFLAGS) mostlyclean) 751 771 (cd oldXMenu; $(MAKE) $(MFLAGS) clean)
