summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2010-06-22 16:51:29 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2010-06-22 16:51:29 +0000
commitbe66e4d64269176848d4f82d95596745dc17679c (patch)
tree2dac8ac7c32efd81ef94e8fccbd32f70b2710ade
parenta46df6b839c8ce7a2307f7d9726f44defc0d64b7 (diff)
downloadrockbox-be66e4d64269176848d4f82d95596745dc17679c.tar.gz
rockbox-be66e4d64269176848d4f82d95596745dc17679c.zip
Make skin_parser Makefile more silent.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27058 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--lib/skin_parser/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/skin_parser/Makefile b/lib/skin_parser/Makefile
index 4026f9e9a9..cdce7bb0c4 100644
--- a/lib/skin_parser/Makefile
+++ b/lib/skin_parser/Makefile
@@ -8,6 +8,9 @@
8# 8#
9 9
10BUILDDIR ?= . 10BUILDDIR ?= .
11ifndef V
12SILENT = @
13endif
11 14
12SRC = skin_buffer.c skin_parser.c skin_debug.c skin_scan.c tag_table.c 15SRC = skin_buffer.c skin_parser.c skin_debug.c skin_scan.c tag_table.c
13OBJ := $(patsubst %.c,$(BUILDDIR)/%.o,$(SRC)) 16OBJ := $(patsubst %.c,$(BUILDDIR)/%.o,$(SRC))
@@ -19,10 +22,12 @@ INCLUDES = -I.
19default: $(OUT) 22default: $(OUT)
20 23
21$(BUILDDIR)/%.o: %.c 24$(BUILDDIR)/%.o: %.c
22 $(CC) $(INCLUDES) $(CFLAGS) -c $< -o $@ 25 @echo CC $<
26 $(SILENT)$(CC) $(INCLUDES) $(CFLAGS) -c $< -o $@
23 27
24$(OUT): $(OBJ) 28$(OUT): $(OBJ)
25 $(AR) rcs $(OUT) $(OBJ) 29 @echo AR $(notdir $(OUT))
30 $(SILENT)$(AR) rcs $(OUT) $(OBJ)
26 31
27clean: 32clean:
28 rm -f $(OBJ) $(OUT) 33 rm -f $(OBJ) $(OUT)