summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 1d951f40b9..1ede58f37d 100644
--- a/Makefile
+++ b/Makefile
@@ -743,16 +743,16 @@ all: $(ALL_PRG-yes) locales
$(CC) $(CFLAGS) -Wno-unused -c -o $@ -x c $<
%.o: %.S
- $(CC) $(CFLAGS) -c -o $@ $<
+ $(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
%.o: %.c
- $(CC) $(CFLAGS) -c -o $@ $<
+ $(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
%.o: %.cpp
- $(CC) $(CXXFLAGS) -c -o $@ $<
+ $(CC) $(DEPFLAGS) $(CXXFLAGS) -c -o $@ $<
%.o: %.m
- $(CC) $(CFLAGS) -c -o $@ $<
+ $(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
%-rc.o: %.rc
$(WINDRES) -I. $< $@