aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGeoff Voelker1998-11-04 01:28:57 +0000
committerGeoff Voelker1998-11-04 01:28:57 +0000
commitc654fd9e7d47874254f264e1a71bcb2e9f86cc3f (patch)
treead5690bc92a533ffa574556a6e1d5881cabfac38 /src
parent51099b4521f9785a82ff32b32b5e47cf2b845deb (diff)
downloademacs-c654fd9e7d47874254f264e1a71bcb2e9f86cc3f.tar.gz
emacs-c654fd9e7d47874254f264e1a71bcb2e9f86cc3f.zip
Compile multiple source files when possible.
Diffstat (limited to 'src')
-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.