aboutsummaryrefslogtreecommitdiffstats
path: root/src/makefile.nt
diff options
context:
space:
mode:
Diffstat (limited to 'src/makefile.nt')
-rw-r--r--src/makefile.nt7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/makefile.nt b/src/makefile.nt
index df55ce3cb3a..c91b61886fd 100644
--- a/src/makefile.nt
+++ b/src/makefile.nt
@@ -241,8 +241,13 @@ $(TLASTLIB): $(BLD)\lastfile.obj
241# 241#
242# Object files. 242# Object files.
243# 243#
244!IF ($(_NMAKE_VER) < $(_NMAKE_VER_5))
244.c{$(BLD)}.obj: 245.c{$(BLD)}.obj:
245 $(CC) $(CFLAGS) -Fo$@ $< 246 $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $<
247!ELSE
248.c{$(BLD)}.obj::
249 $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $<
250!ENDIF
246 251
247# 252#
248# Assuming INSTALL_DIR is defined, build and install emacs in it. 253# Assuming INSTALL_DIR is defined, build and install emacs in it.