From 1f84a09e7e27de51a5852cfea86f845cdcfa9b2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Tue, 3 May 2011 22:51:19 +0200 Subject: [PATCH] Fix MKBUNDLE in makefile silencer --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 05761a71..10219170 100644 --- a/Makefile +++ b/Makefile @@ -159,6 +159,8 @@ CFLAGS_com += -D_FILE_OFFSET_BITS=64 CFLAGS_com += -I${BUILDDIR} -I${CURDIR}/src -I${CURDIR} CFLAGS_com += -DHTS_VERSION=\"$(VERSION)\" +MKBUNDLE = $(CURDIR)/support/mkbundle + ifndef V ECHO = printf "$(1)\t%s\n" $(2) BRIEF = CC MKBUNDLE CXX @@ -209,6 +211,5 @@ include support/${OSENV}.mk $(BUILDDIR)/bundles/%.o: $(BUILDDIR)/bundles/%.c $(CC) -I${CURDIR}/src -c -o $@ $< -$(BUILDDIR)/bundles/%.c: % $(CURDIR)/support/mkbundle - $(CURDIR)/support/mkbundle \ - -o $@ -s $< -d ${BUILDDIR}/bundles/$<.d -p $< -z +$(BUILDDIR)/bundles/%.c: % + $(MKBUNDLE) -o $@ -s $< -d ${BUILDDIR}/bundles/$<.d -p $< -z