Support for verbose builds with make V=1

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6190 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-03-11 09:50:32 +00:00
parent d48fa643bf
commit 1ab51e7635

View file

@ -1,20 +1,24 @@
# -*- Makefile -*-
ifndef V
SILENT=@
endif
$(OBJDIR)/%.o: %.c
@mkdir -p `dirname $@`
$(SILENT)mkdir -p `dirname $@`
@echo "CC $<"
@$(CC) $(CFLAGS) -c $< -o $@
$(SILENT)$(CC) $(CFLAGS) -c $< -o $@
$(OBJDIR)/%.o: %.S
@mkdir -p `dirname $@`
$(SILENT)mkdir -p `dirname $@`
@echo "CC $<"
@$(CC) $(CFLAGS) -c $< -o $@
$(SILENT)$(CC) $(CFLAGS) -c $< -o $@
# the lame echo stuff down here is to prevent any compiler errors/warnings
# to cause an error code to get returned and thus stop the build
$(DEPFILE): $(SOURCES)
@rm -f $(DEPFILE)
@(for each in $(SOURCES) x; do \
$(SILENT)rm -f $(DEPFILE)
$(SILENT)(for each in $(SOURCES) x; do \
if test "x" != "$$each"; then \
obj=`echo $$each | sed -e 's/\.[cS]/.o/'`; \
$(CC) -MM -MT "$(OBJDIR)/$$obj" $(CFLAGS) $$each >> $(DEPFILE) 2>/dev/null; \
@ -23,6 +27,6 @@ $(DEPFILE): $(SOURCES)
echo "oo" >/dev/null )
tags:
@(for d in $(DIRS); do \
$(SILENT)(for d in $(DIRS); do \
etags -o $(OBJDIR)/TAGS -a $$d/*.[ch]; \
done)