mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
Make mkamsboot Makefile more silent.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22320 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cb55d5c65f
commit
ac77c08f11
1 changed files with 7 additions and 2 deletions
|
@ -5,6 +5,10 @@ LIBUCL=../../tools/ucl/src/libucl.a
|
||||||
#change for releases
|
#change for releases
|
||||||
APPVERSION=`../../tools/version.sh`
|
APPVERSION=`../../tools/version.sh`
|
||||||
|
|
||||||
|
ifndef V
|
||||||
|
SILENT = @
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
|
ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
|
||||||
OUTPUT=mkamsboot.exe
|
OUTPUT=mkamsboot.exe
|
||||||
CFLAGS+=-mno-cygwin
|
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
|
$(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
|
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
|
# some trickery to build ppc and i386 from a single call
|
||||||
ifeq ($(RBARCH),)
|
ifeq ($(RBARCH),)
|
||||||
|
@ -73,3 +77,4 @@ clean:
|
||||||
build$(RBARCH):
|
build$(RBARCH):
|
||||||
@echo MKDIR build$(RBARCH)
|
@echo MKDIR build$(RBARCH)
|
||||||
$(SILENT)mkdir build$(RBARCH)
|
$(SILENT)mkdir build$(RBARCH)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue