cmd1 && cmd2 && cmd3

|	|	|
v	v	v

target:
	cmd1
	cmd2
	cmd3

This makes the script (cmd1 && cmd2 && cmd3) slightly easier to debug.  No
functional change expected.
This commit is contained in:
uebayasi 2007-11-19 05:54:03 +00:00
parent 23cfff0893
commit 0f2ad14fc7

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.11 2006/08/27 07:04:00 simonb Exp $ # $NetBSD: Makefile,v 1.12 2007/11/19 05:54:03 uebayasi Exp $
.include <bsd.own.mk> .include <bsd.own.mk>
@ -45,9 +45,12 @@ native-binutils: .native/.configure_done
${HOST_SH} ${GNUHOSTDIST}/configure \ ${HOST_SH} ${GNUHOSTDIST}/configure \
--build=`${GNUHOSTDIST}/config.guess` \ --build=`${GNUHOSTDIST}/config.guess` \
--host=${MACHINE_GNU_PLATFORM} \ --host=${MACHINE_GNU_PLATFORM} \
--target=${MACHINE_GNU_PLATFORM}) && \ --target=${MACHINE_GNU_PLATFORM})
(cd .native && ${MAKE} configure-host) && \ PATH=${TOOLDIR}/bin:$$PATH; export PATH; \
(cd .native/bfd && ${MAKE} bfd.h bfdver.h) && \ (cd .native && ${MAKE} configure-host)
PATH=${TOOLDIR}/bin:$$PATH; export PATH; \
(cd .native/bfd && ${MAKE} bfd.h bfdver.h)
PATH=${TOOLDIR}/bin:$$PATH; export PATH; \
(cd .native/ld && ${MAKE} ldemul-list.h) (cd .native/ld && ${MAKE} ldemul-list.h)
@touch $@ @touch $@