1
0
Fork 0
forked from len0rd/rockbox

Adapted more Makefiles to the more efficient info printing.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11390 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2006-10-30 01:40:20 +00:00
parent 5421e86969
commit f40f0debcb
4 changed files with 27 additions and 45 deletions

View file

@ -30,15 +30,13 @@ DIRS =
all: $(OUTPUT)
$(OUTPUT): $(OBJS)
@echo "AR+RANLIB $(notdir $@)"
@$(AR) ruv $@ $+ >/dev/null 2>&1
@$(RANLIB) $@
$(call PRINTS,AR+RANLIB $(@F))$(AR) ruv $@ $+ >/dev/null 2>&1
$(SILENT)$(RANLIB) $@
include $(TOOLSDIR)/make.inc
clean:
@echo "cleaning libwavpack"
@rm -f $(OBJS) $(OUTPUT) $(DEPFILE)
$(call PRINTS,cleaning libwavpack)rm -f $(OBJS) $(OUTPUT) $(DEPFILE)
ifneq ($(MAKECMDGOALS),clean)
-include $(DEPFILE)