mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-16 04:37:15 +08:00
add installcheck
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in: add installcheck target, set PRMS to install-prms
|
||||||
|
|
||||||
Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
||||||
|
|
||||||
* configure: add support for package_makefile_fragment, handle the
|
* configure: add support for package_makefile_fragment, handle the
|
||||||
|
@ -192,7 +192,7 @@ XTRAFLAGS = ` \
|
|||||||
echo ; \
|
echo ; \
|
||||||
fi`
|
fi`
|
||||||
|
|
||||||
PRMS = all-prms
|
PRMS = install-prms
|
||||||
|
|
||||||
#### host and target specific makefile fragments come in here.
|
#### host and target specific makefile fragments come in here.
|
||||||
###
|
###
|
||||||
@ -291,8 +291,8 @@ GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
|
|||||||
# 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 check dvi info install-info install-info-dirs
|
.PHONY: all check installcheck dvi info install-info install-info-dirs
|
||||||
.PHONY: do-info do-check do-dvi do-install-info
|
.PHONY: do-info do-check do-installcheck do-dvi do-install-info
|
||||||
.PHONY: do-clean do-mostlyclean do-distclean do-realclean
|
.PHONY: do-clean do-mostlyclean do-distclean do-realclean
|
||||||
.NOEXPORT:
|
.NOEXPORT:
|
||||||
MAKEOVERRIDES=
|
MAKEOVERRIDES=
|
||||||
@ -304,7 +304,7 @@ MAKEOVERRIDES=
|
|||||||
# This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
|
# This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
|
||||||
# because it is so large that it can easily overflow the command line
|
# because it is so large that it can easily overflow the command line
|
||||||
# length limit on some systems.
|
# length limit on some systems.
|
||||||
do-info do-check do-dvi do-install-info do-clean do-mostlyclean do-distclean do-realclean:
|
do-info do-check do-installcheck do-dvi do-install-info do-clean do-mostlyclean do-distclean do-realclean:
|
||||||
@target=`echo $@ | sed -e 's/^do-//'`; \
|
@target=`echo $@ | sed -e 's/^do-//'`; \
|
||||||
rootme=`pwd`; export rootme; \
|
rootme=`pwd`; export rootme; \
|
||||||
srcroot=`cd $(srcdir); pwd`; export srcroot; \
|
srcroot=`cd $(srcdir); pwd`; export srcroot; \
|
||||||
@ -339,6 +339,7 @@ do-info do-check do-dvi do-install-info do-clean do-mostlyclean do-distclean do-
|
|||||||
|
|
||||||
info: do-info
|
info: do-info
|
||||||
check: do-check
|
check: do-check
|
||||||
|
installcheck: do-installcheck
|
||||||
dvi: do-dvi
|
dvi: do-dvi
|
||||||
|
|
||||||
install-info: install-info-dirs do-install-info dir.info
|
install-info: install-info-dirs do-install-info dir.info
|
||||||
|
Reference in New Issue
Block a user