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
commitc654fd9e7d47874254f264e1a71bcb2e9f86cc3f (patch)
treead5690bc92a533ffa574556a6e1d5881cabfac38 /src/makefile.nt
parent51099b4521f9785a82ff32b32b5e47cf2b845deb (diff)
downloademacs-c654fd9e7d47874254f264e1a71bcb2e9f86cc3f.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.