summaryrefslogtreecommitdiff
path: root/src/makefile.nt
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1998-11-04 01:28:57 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1998-11-04 01:28:57 +0000
commit6c2928d19d6cfb964451a2a0c8ba0a63739b9ae2 (patch)
treeca51522d87c43cca7c48c20aa077f254c40a8d5d /src/makefile.nt
parent6dda02e10407f4024cdc770c9acd5ea0ec318db4 (diff)
downloademacs-6c2928d19d6cfb964451a2a0c8ba0a63739b9ae2.tar.gz
Compile multiple source files when possible.
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
#
# Object files.
#
+!IF ($(_NMAKE_VER) < $(_NMAKE_VER_5))
.c{$(BLD)}.obj:
- $(CC) $(CFLAGS) -Fo$@ $<
+ $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $<
+!ELSE
+.c{$(BLD)}.obj::
+ $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $<
+!ENDIF
#
# Assuming INSTALL_DIR is defined, build and install emacs in it.