summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1994-08-28 17:44:10 +0000
committerbde <bde@FreeBSD.org>1994-08-28 17:44:10 +0000
commitfc79ecf3e09da758d92f793cbd259356ae700462 (patch)
tree4869ced8a50ce1d23edad068a2d1e9f2abc39176 /gnu/usr.bin
parentaf9bbad3e5aef213859f9162549b873846b30ad0 (diff)
downloadFreeBSD-src-fc79ecf3e09da758d92f793cbd259356ae700462.zip
FreeBSD-src-fc79ecf3e09da758d92f793cbd259356ae700462.tar.gz
Use ${ECHO} instead of `echo' so that `make -s' is fairly quiet.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/as/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/usr.bin/as/Makefile b/gnu/usr.bin/as/Makefile
index 9b687b9..393c922 100644
--- a/gnu/usr.bin/as/Makefile
+++ b/gnu/usr.bin/as/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 6.1 (Berkeley) 3/3/91
-# $Id: Makefile,v 1.2 1993/11/03 00:50:49 paul Exp $
+# $Id: Makefile,v 1.3 1994/02/20 16:06:08 rgrimes Exp $
.include "config/Makefile.$(MACHINE)"
@@ -38,12 +38,12 @@ beforedepend ${PROG}: ${CONF_HEADERS}
targ-cpu.h: Makefile config/Makefile.$(MACHINE)
@cmp -s $(.CURDIR)/config/tc-$(gas_target).h targ-cpu.h || \
- ( echo "updating ${.TARGET}..." ; /bin/rm -f targ-cpu.h ; \
+ ( ${ECHO} "updating ${.TARGET}..." ; /bin/rm -f targ-cpu.h ; \
cp $(.CURDIR)/config/tc-$(gas_target).h targ-cpu.h )
obj-format.h: Makefile config/Makefile.$(MACHINE)
@cmp -s $(.CURDIR)/config/obj-$(gas_objformat).h obj-format.h || \
- ( echo "updating ${.TARGET}..." ; /bin/rm -f obj-format.h ; \
+ ( ${ECHO} "updating ${.TARGET}..." ; /bin/rm -f obj-format.h ; \
cp $(.CURDIR)/config/obj-$(gas_objformat).h obj-format.h )
.if exists ($(.CURDIR)/config/ho-$(gas_hosttype).h)
@@ -54,7 +54,7 @@ config_hostfile= $(.CURDIR)/config/ho-generic.h
host.h: Makefile config/Makefile.$(MACHINE)
@cmp -s $(config_hostfile) host.h || \
- ( echo "updating ${.TARGET}..." ; /bin/rm -f host.h ; \
+ ( ${ECHO} "updating ${.TARGET}..." ; /bin/rm -f host.h ; \
cp $(config_hostfile) host.h )
.if exists ($(.CURDIR)/config/te-$(MACHINE).h)
@@ -65,7 +65,7 @@ config_targenvfile= $(.CURDIR)/config/te-generic.h
targ-env.h: Makefile config/Makefile.$(MACHINE)
@cmp -s $(config_targenvfile) targ-env.h || \
- ( echo "updating ${.TARGET}..." ; /bin/rm -f targ-env.h ; \
+ ( ${ECHO} "updating ${.TARGET}..." ; /bin/rm -f targ-env.h ; \
cp $(config_targenvfile) targ-env.h )
CLEANFILES+= ${CONF_HEADERS}
OpenPOWER on IntegriCloud