Mercurial > emacs
diff src/makefile.nt @ 23626:9e10a92252d9
Compile multiple source files when possible.
| author | Geoff Voelker <voelker@cs.washington.edu> |
|---|---|
| date | Wed, 04 Nov 1998 01:28:57 +0000 |
| parents | caf3f908142d |
| children | 02e5da32da56 |
line wrap: on
line diff
--- a/src/makefile.nt Wed Nov 04 01:28:04 1998 +0000 +++ b/src/makefile.nt Wed Nov 04 01:28:57 1998 +0000 @@ -241,8 +241,13 @@ # # 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.
