Mercurial > emacs
diff lib-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 | 9a847e9cabfa |
| children | ce563c147515 |
line wrap: on
line diff
--- a/lib-src/makefile.nt Wed Nov 04 01:28:04 1998 +0000 +++ b/lib-src/makefile.nt Wed Nov 04 01:28:57 1998 +0000 @@ -217,8 +217,13 @@ {$(BLD)}.obj{$(BLD)}.exe: $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) +!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 # # Build the executables
