aboutsummaryrefslogtreecommitdiffstats
path: root/nt
diff options
context:
space:
mode:
authorGeoff Voelker1998-11-04 01:28:57 +0000
committerGeoff Voelker1998-11-04 01:28:57 +0000
commitc654fd9e7d47874254f264e1a71bcb2e9f86cc3f (patch)
treead5690bc92a533ffa574556a6e1d5881cabfac38 /nt
parent51099b4521f9785a82ff32b32b5e47cf2b845deb (diff)
downloademacs-c654fd9e7d47874254f264e1a71bcb2e9f86cc3f.tar.gz
emacs-c654fd9e7d47874254f264e1a71bcb2e9f86cc3f.zip
Compile multiple source files when possible.
Diffstat (limited to 'nt')
-rw-r--r--nt/makefile.nt7
1 files changed, 6 insertions, 1 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt
index ab1dd5b7fe9..77609f45bb9 100644
--- a/nt/makefile.nt
+++ b/nt/makefile.nt
@@ -29,8 +29,13 @@ TRES = $(BLD)\emacs.res
29TRES = $(BLD)\emacs.rbj 29TRES = $(BLD)\emacs.rbj
30!endif 30!endif
31 31
32!IF ($(_NMAKE_VER) < $(_NMAKE_VER_5))
32.c{$(BLD)}.obj: 33.c{$(BLD)}.obj:
33 $(CC) $(CFLAGS) -Fo$@ $< 34 $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $<
35!ELSE
36.c{$(BLD)}.obj::
37 $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $<
38!ENDIF
34 39
35addpm: $(BLD) $(BLD)\addpm.exe 40addpm: $(BLD) $(BLD)\addpm.exe
36$(BLD)\addpm.obj: addpm.c 41$(BLD)\addpm.obj: addpm.c