Changeset 3019 for trunk/include/pdwin32.tools
- Timestamp:
- Mar 5, 2000, 12:47:19 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/pdwin32.tools
r2910 r3019 1 # $Id: pdwin32.tools,v 1. 7 2000-02-26 18:29:37 birdExp $1 # $Id: pdwin32.tools,v 1.8 2000-03-04 23:45:30 sandervl Exp $ 2 2 # ODIN / win32os2 Project 3 3 # … … 17 17 ECHO = echo 18 18 IMPDEF = $(PDWIN32_TOOLS)\impdef.exe 19 DEPEND = $(PDWIN32_TOOLS)\fastdep.exe 19 #SvL: Remove this when everything has been converted to the new build rules 20 !ifdef NEWBUILD 21 DEPEND = $(PDWIN32_TOOLS)\fastdep.exe -o$$(OBJDIR) 22 !else 23 DEPEND = $(PDWIN32_TOOLS)\fastdep.exe 24 !endif 25 20 26 DOWITHDIRS = $(PDWIN32_TOOLS)\dowithdirs.cmd 21 27 MAKE_CMD = nmake /nologo … … 34 40 # Targets 35 41 # 42 .c{$(OBJDIR)}.obj: 43 $(CC) $(CFLAGS) -c -Fo$(OBJDIR)\$(@B).obj $< 44 45 .cpp{$(OBJDIR)}.obj: 46 $(CXX) $(CXXFLAGS) -Fo$(OBJDIR)\$(@B).obj -c $< 47 48 .asm{$(OBJDIR)}.obj: 49 $(AS) $(ASFLAGS) -Fdo:$(OBJDIR) $< 50 51 36 52 .c.obj: 37 53 $(CC) $(CFLAGS) -c $< … … 44 60 45 61 46
Note:
See TracChangeset
for help on using the changeset viewer.