Ignore:
Timestamp:
Mar 7, 2000, 12:42:12 AM (25 years ago)
Author:
bird
Message:

Makefiles are updated to new style.

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 sandervl Exp $
     1# $Id: pdwin32.tools,v 1.9 2000-03-06 23:42:12 bird Exp $
    22# ODIN / win32os2 Project
    33#
     
    1717ECHO        = echo
    1818IMPDEF      = $(PDWIN32_TOOLS)\impdef.exe
     19DEPEND      = $(PDWIN32_TOOLS)\fastdep.exe -o$$(OBJDIR)
    1920#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
     22DEPEND      = $(PDWIN32_TOOLS)\fastdep.exe
    2423!endif
    2524
     
    4039# Targets
    4140#
     41.SUFFIXES: .orc
     42
    4243.c{$(OBJDIR)}.obj:
    4344    $(CC) $(CFLAGS) -c -Fo$(OBJDIR)\$(@B).obj $<
     
    4950    $(AS) $(ASFLAGS) -Fdo:$(OBJDIR) $<
    5051
     52.orc{$(OBJDIR)}.asm:
     53    $(RC) $(RCFLAGS) -o $(OBJDIR)\$(@B).asm $<
    5154
     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#
    5266.c.obj:
    5367    $(CC) $(CFLAGS) -c $<
     
    5973    $(AS) $(ASFLAGS) $<
    6074
     75.orc.asm:
     76    $(RC) $(RCFLAGS) -o $@ $<
    6177
     78.rc.res:
     79    $(OS2RC) $(OS2RCFLAGS) $< $@
     80
Note: See TracChangeset for help on using the changeset viewer.