move translation rule after modifications of CFLAGS

This commit is contained in:
Steffen Jaeckel 2017-05-05 19:11:16 +02:00
parent 39f12dafc4
commit 12cf50d4e2

View File

@ -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} $@"