forked from len0rd/rockbox
Make rbutil tools Makefile more silent.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31168 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d0731064c8
commit
f83a3d0ac4
1 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
|
||||||
|
ifndef V
|
||||||
|
SILENT = @
|
||||||
|
endif
|
||||||
|
|
||||||
CFLAGS=-Wall -W -D_LARGEFILE64_SOURCE
|
CFLAGS=-Wall -W -D_LARGEFILE64_SOURCE
|
||||||
|
|
||||||
ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
|
ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
|
||||||
|
@ -19,7 +24,8 @@ WINDRES = $(CROSS)windres
|
||||||
all: bin2c
|
all: bin2c
|
||||||
|
|
||||||
bin2c: bin2c.c
|
bin2c: bin2c.c
|
||||||
$(NATIVECC) $(CFLAGS) -o bin2c bin2c.c
|
@echo CC $<
|
||||||
|
$(SILENT)$(NATIVECC) $(CFLAGS) -o bin2c bin2c.c
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) bin2c bin2c.exe
|
$(RM) bin2c bin2c.exe
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue