summaryrefslogtreecommitdiffstats
path: root/rbutil/mkamsboot/Makefile
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2009-08-15 14:26:08 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2009-08-15 14:26:08 +0000
commitac77c08f11205fddaed93b53d07c803dd445d88f (patch)
treebb46cc00fee1818b7c649e1a21c5d9f346c30993 /rbutil/mkamsboot/Makefile
parentcb55d5c65f8436b3de6bbf11686a961655183a93 (diff)
downloadrockbox-ac77c08f11205fddaed93b53d07c803dd445d88f.tar.gz
rockbox-ac77c08f11205fddaed93b53d07c803dd445d88f.zip
Make mkamsboot Makefile more silent.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22320 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/mkamsboot/Makefile')
-rw-r--r--rbutil/mkamsboot/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/rbutil/mkamsboot/Makefile b/rbutil/mkamsboot/Makefile
index a5ab42157c..12058ecab8 100644
--- a/rbutil/mkamsboot/Makefile
+++ b/rbutil/mkamsboot/Makefile
@@ -5,6 +5,10 @@ LIBUCL=../../tools/ucl/src/libucl.a
#change for releases
APPVERSION=`../../tools/version.sh`
+ifndef V
+SILENT = @
+endif
+
ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
OUTPUT=mkamsboot.exe
CFLAGS+=-mno-cygwin
@@ -50,7 +54,7 @@ $(OUT)/libmkamsboot.o: mkamsboot.c dualboot.h md5.h
$(CC) $(CFLAGS) -DLIB -c -o $(OUT)/libmkamsboot.o -W -Wall mkamsboot.c
libmkamsboot$(RBARCH).a: $(OUT) $(OUT)/libmkamsboot.o $(OUT)/md5.o $(OUT)/dualboot.o
- $(AR) ruv libmkamsboot$(RBARCH).a $(OUT)/libmkamsboot.o $(OUT)/md5.o $(OUT)/dualboot.o
+ $(AR) ru libmkamsboot$(RBARCH).a $(OUT)/libmkamsboot.o $(OUT)/md5.o $(OUT)/dualboot.o
# some trickery to build ppc and i386 from a single call
ifeq ($(RBARCH),)
@@ -72,4 +76,5 @@ clean:
build$(RBARCH):
@echo MKDIR build$(RBARCH)
- $(SILENT)mkdir build$(RBARCH) \ No newline at end of file
+ $(SILENT)mkdir build$(RBARCH)
+