From: grarpamp <grarpamp@gmail.com>
[b43-tools.git] / fwcutter / Makefile
index 197ddef227ef868dab84cb620a16ad34f65d1d65..06bac17290f4463d3524e741a2e83604338a5ff3 100644 (file)
@@ -1,4 +1,4 @@
-VERSION = 012
+VERSION = 013
 
 # The toolchain definitions
 CC             = cc
@@ -12,7 +12,7 @@ QUIET_DEPEND  = $(Q:@=@echo '     DEPEND   '$@;)$(CC)
 ifeq ($(C),1)
 QUIET_SPARSE   = $(Q:@=@echo '     SPARSE   '$@;)$(SPARSE)
 else
-QUIET_SPARSE   = @/bin/true
+QUIET_SPARSE   = @true
 endif
 
 PREFIX ?= /usr/local
@@ -35,7 +35,7 @@ OBJS = $(sort $(patsubst %.c,obj/%.o,$(1)))
 # Generate dependencies
 $(call DEPS,$(SRCS)): dep/%.d: %.c 
        @mkdir -p $(dir $@)
-       $(QUIET_DEPEND) -o $@.tmp -MM -MG -MT "$@ $(patsubst dep/%.d,obj/%.o,$@)" $(CFLAGS) $< && mv -f $@.tmp $@
+       $(QUIET_DEPEND) -o $@.tmp -MM -MT "$@ $(patsubst dep/%.d,obj/%.o,$@)" $(CFLAGS) $< && mv -f $@.tmp $@
 
 -include $(call DEPS,$(SRCS))