Changeset 3032 for trunk/include/pdwin32.tools
- Timestamp:
- Mar 7, 2000, 12:42:12 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/pdwin32.tools
r3019 r3032 1 # $Id: pdwin32.tools,v 1. 8 2000-03-04 23:45:30 sandervlExp $1 # $Id: pdwin32.tools,v 1.9 2000-03-06 23:42:12 bird 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 -o$$(OBJDIR) 19 20 #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 21 !ifdef OLDBUILD 22 DEPEND = $(PDWIN32_TOOLS)\fastdep.exe 24 23 !endif 25 24 … … 40 39 # Targets 41 40 # 41 .SUFFIXES: .orc 42 42 43 .c{$(OBJDIR)}.obj: 43 44 $(CC) $(CFLAGS) -c -Fo$(OBJDIR)\$(@B).obj $< … … 49 50 $(AS) $(ASFLAGS) -Fdo:$(OBJDIR) $< 50 51 52 .orc{$(OBJDIR)}.asm: 53 $(RC) $(RCFLAGS) -o $(OBJDIR)\$(@B).asm $< 51 54 55 .orc{$(OBJDIR)}.obj: 56 $(RC) $(RCFLAGS) -o $(OBJDIR)\$(@B).asm $< 57 $(AS) $(ASFLAGS) -Fdo:$(OBJDIR) $(OBJDIR)\$(@B).asm 58 59 .rc{$(OBJDIR)}.res: 60 $(OS2RC) $(OS2RCFLAGS) $< $@ 61 62 63 # 64 # Old Targets 65 # 52 66 .c.obj: 53 67 $(CC) $(CFLAGS) -c $< … … 59 73 $(AS) $(ASFLAGS) $< 60 74 75 .orc.asm: 76 $(RC) $(RCFLAGS) -o $@ $< 61 77 78 .rc.res: 79 $(OS2RC) $(OS2RCFLAGS) $< $@ 80
Note:
See TracChangeset
for help on using the changeset viewer.