diff --git a/makefile b/makefile index 0ead01d..70f2c66 100644 --- a/makefile +++ b/makefile @@ -13,12 +13,6 @@ silent=@ silent_stdout= > /dev/null endif -%.o: %.c -ifneq ($V,1) - @echo " * ${CC} $@" -endif - ${silent} ${CC} ${CFLAGS} -c $< -o $@ - # ranlib tools ifndef RANLIB ifeq ($(PLATFORM), Darwin) @@ -233,6 +227,12 @@ $(OBJECTS): $(HEADERS) $(DOBJECTS): $(HEADERS) $(THEADERS) $(TOBJECTS): $(HEADERS) $(THEADERS) +.c.o: +ifneq ($V,1) + @echo " * ${CC} $@" +endif + ${silent} ${CC} ${CFLAGS} -c $< -o $@ + $(LIBNAME): $(OBJECTS) ifneq ($V,1) @echo " * ${AR} $@"