diff options
| author | Geoff Voelker | 1998-11-04 01:28:57 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1998-11-04 01:28:57 +0000 |
| commit | c654fd9e7d47874254f264e1a71bcb2e9f86cc3f (patch) | |
| tree | ad5690bc92a533ffa574556a6e1d5881cabfac38 /lib-src/makefile.nt | |
| parent | 51099b4521f9785a82ff32b32b5e47cf2b845deb (diff) | |
| download | emacs-c654fd9e7d47874254f264e1a71bcb2e9f86cc3f.tar.gz emacs-c654fd9e7d47874254f264e1a71bcb2e9f86cc3f.zip | |
Compile multiple source files when possible.
Diffstat (limited to 'lib-src/makefile.nt')
| -rw-r--r-- | lib-src/makefile.nt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt index ab1729cfa8c..dff390ccb1f 100644 --- a/lib-src/makefile.nt +++ b/lib-src/makefile.nt | |||
| @@ -217,8 +217,13 @@ $(DOC): $(BLD)\make-docfile.exe | |||
| 217 | {$(BLD)}.obj{$(BLD)}.exe: | 217 | {$(BLD)}.obj{$(BLD)}.exe: |
| 218 | $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) | 218 | $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) |
| 219 | 219 | ||
| 220 | !IF ($(_NMAKE_VER) < $(_NMAKE_VER_5)) | ||
| 220 | .c{$(BLD)}.obj: | 221 | .c{$(BLD)}.obj: |
| 221 | $(CC) $(CFLAGS) -Fo$@ $< | 222 | $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< |
| 223 | !ELSE | ||
| 224 | .c{$(BLD)}.obj:: | ||
| 225 | $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< | ||
| 226 | !ENDIF | ||
| 222 | 227 | ||
| 223 | # | 228 | # |
| 224 | # Build the executables | 229 | # Build the executables |