فهرست منبع

move translation rule after modifications of CFLAGS

Steffen Jaeckel 8 سال پیش
والد
کامیت
12cf50d4e2
1فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
  1. 6 6
      makefile

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