diff options
Diffstat (limited to 'nt')
| -rw-r--r-- | nt/makefile.nt | 7 |
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 | |||
| 29 | TRES = $(BLD)\emacs.rbj | 29 | TRES = $(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 | ||
| 35 | addpm: $(BLD) $(BLD)\addpm.exe | 40 | addpm: $(BLD) $(BLD)\addpm.exe |
| 36 | $(BLD)\addpm.obj: addpm.c | 41 | $(BLD)\addpm.obj: addpm.c |