From 4872825ed2c71e8bb2520681035355b24759d442 Mon Sep 17 00:00:00 2001 From: Brandon Low Date: Thu, 9 Feb 2006 04:27:57 +0000 Subject: Various build sytem cleanups * Parallel build appears to work properly * Use $(SILENT) instead of @ about everywhere * Less calls to bash by using make builtin substitutions git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8638 a1c6a512-1295-4272-9138-f99709370657 --- tools/Makefile | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile index 89c3681cc9..bd253e7584 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -27,30 +27,31 @@ iaudio.o: iaudio.c sh2d: sh2d.c bmp2rb: bmp2rb.c - $(CC) -DAPPLICATION_NAME=\"$@\" -g $+ -o $@ + $(SILENT)$(CC) -DAPPLICATION_NAME=\"$@\" -g $+ -o $@ rdf2binary: rdf2binary.c - $(CC) -g $+ -o $@ + $(SILENT)$(CC) -g $+ -o $@ mkboot: mkboot.c - $(CC) -g $+ -o $@ + $(SILENT)$(CC) -g $+ -o $@ ipod_fw: ipod_fw.c - $(CC) -g $+ -o $@ + $(SILENT)$(CC) -g $+ -o $@ convbdf: convbdf.c - $(CC) -g $+ -o $@ + $(SILENT)$(CC) -g $+ -o $@ codepages: codepages.c codepage_tables.c - $(CC) -g $+ -o $@ + $(SILENT)$(CC) -g $+ -o $@ generate_rocklatin: generate_rocklatin.c ../firmware/drivers/lcd-player-charset.c - $(CC) -DHAVE_LCD_CHARCELLS -D__CONFIG_H__ -I../firmware/export $+ -o $@ + $(SILENT)$(CC) -DHAVE_LCD_CHARCELLS -D__CONFIG_H__ -I../firmware/export $+ -o $@ uclpack: - $(MAKE) -C ucl + $(SILENT)$(MAKE) -C ucl clean: - rm -f $(CLEANALL) $(shell for f in $(CLEANALL) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~ - $(MAKE) -C ucl clean + @echo "Cleaning tools" + $(SILENT)rm -f $(CLEANALL) $(shell for f in $(CLEANALL) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~ + $(SILENT)$(MAKE) -C ucl clean -- cgit v1.2.3