diff options
Diffstat (limited to 'win32/Makefile')
-rw-r--r-- | win32/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/Makefile b/win32/Makefile index bb7cb34e..964b74c5 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -78,10 +78,10 @@ syslinux.exe: $(OBJS) %.o: %.c - $(WINCC) -Wp,-MT,$@,-MMD,.$@.d $(WINCFLAGS) -c -o $@ $< + $(WINCC) $(UMAKEDEPS) $(WINCFLAGS) -c -o $@ $< %.i: %.c - $(WINCC) $(WINCFLAGS) -E -o $@ $< + $(WINCC) $(UMAKEDEPS) $(WINCFLAGS) -E -o $@ $< %.s: %.c - $(WINCC) $(WINCFLAGS) -S -o $@ $< + $(WINCC) $(UMAKEDEPS) $(WINCFLAGS) -S -o $@ $< -include .*.d *.tmp |