mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 05:47:26 +08:00
* Makefile.in (mostlyclean, distclean, realclean): Fix to
do more-or-less the right thing.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in (mostlyclean, distclean, realclean): Fix to
|
||||||
|
do more-or-less the right thing.
|
||||||
|
|
||||||
Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
|
Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
* Makefile.in: Add lines defining CC and CXX, and use CXX rather
|
* Makefile.in: Add lines defining CC and CXX, and use CXX rather
|
||||||
|
25
Makefile.in
25
Makefile.in
@ -225,7 +225,7 @@ TARGET_FLAGS_TO_PASS = \
|
|||||||
# The first rule in the file had better be this one. Don't put any above it.
|
# The first rule in the file had better be this one. Don't put any above it.
|
||||||
all: $(ALL)
|
all: $(ALL)
|
||||||
|
|
||||||
.PHONY: all info install-info dvi clean-info distclean mostlyclean realclean
|
.PHONY: all info install-info dvi clean-info
|
||||||
.NOEXPORT:
|
.NOEXPORT:
|
||||||
|
|
||||||
info check clean-info dvi distclean mostlyclean realclean:
|
info check clean-info dvi distclean mostlyclean realclean:
|
||||||
@ -260,11 +260,28 @@ all.cross: all-libiberty all-mmalloc all-gas all-byacc all-flex all-ld \
|
|||||||
all-opcodes all-z8ksim all-bfd all-readline all-gdb all-binutils all-gcc \
|
all-opcodes all-z8ksim all-bfd all-readline all-gdb all-binutils all-gcc \
|
||||||
all-newlib all-deja-gnu
|
all-newlib all-deja-gnu
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean distclean mostlyclean realclean do_clean
|
||||||
clean:
|
|
||||||
|
do_clean:
|
||||||
|
-rm -rf *.a TEMP errs core *.o *~ \#* TAGS *.E
|
||||||
|
|
||||||
|
mostlyclean: do_clean
|
||||||
|
@rootme=`pwd` ; export rootme ; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) DO=mostlyclean "DODIRS=$(SUBDIRS)" subdir_do
|
||||||
|
|
||||||
|
clean: do_clean
|
||||||
@rootme=`pwd` ; export rootme ; \
|
@rootme=`pwd` ; export rootme ; \
|
||||||
$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
|
$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
|
||||||
-rm -rf *.a TEMP errs core *.o *~ \#* TAGS *.E
|
|
||||||
|
distclean: do_clean
|
||||||
|
@rootme=`pwd` ; export rootme ; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
|
||||||
|
-rm -rf Makefile config.status
|
||||||
|
|
||||||
|
realclean: do_clean
|
||||||
|
@rootme=`pwd` ; export rootme ; \
|
||||||
|
$(MAKE) $(FLAGS_TO_PASS) DO=realclean "DODIRS=$(SUBDIRS)" subdir_do
|
||||||
|
-rm -rf Makefile config.status
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@echo "the uninstall target is not supported in this tree"
|
@echo "the uninstall target is not supported in this tree"
|
||||||
|
Reference in New Issue
Block a user