Changeset 3019 for trunk/include


Ignore:
Timestamp:
Mar 5, 2000, 12:47:19 AM (26 years ago)
Author:
sandervl
Message:

makefile rule changes

Location:
trunk/include
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/pdwin32.tools

    r2910 r3019  
    1 # $Id: pdwin32.tools,v 1.7 2000-02-26 18:29:37 bird Exp $
     1# $Id: pdwin32.tools,v 1.8 2000-03-04 23:45:30 sandervl Exp $
    22# ODIN / win32os2 Project
    33#
     
    1717ECHO        = echo
    1818IMPDEF      = $(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
     21DEPEND      = $(PDWIN32_TOOLS)\fastdep.exe -o$$(OBJDIR)
     22!else
     23DEPEND      = $(PDWIN32_TOOLS)\fastdep.exe
     24!endif
     25
    2026DOWITHDIRS  = $(PDWIN32_TOOLS)\dowithdirs.cmd
    2127MAKE_CMD    = nmake /nologo
     
    3440# Targets
    3541#
     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
    3652.c.obj:
    3753    $(CC) $(CFLAGS) -c $<
     
    4460
    4561
    46 
  • trunk/include/pdwin32.vac3.dbg

    r2995 r3019  
    1 # $Id: pdwin32.vac3.dbg,v 1.18 2000-03-04 19:04:14 bird Exp $
     1# $Id: pdwin32.vac3.dbg,v 1.19 2000-03-04 23:45:31 sandervl Exp $
    22# ODIN / win32os2 Project
    33#
     
    1010RTLLIB   = cppom30.lib
    1111RTLLIB_O = cppom30o.lib
     12
     13OBJDIR   = .\bin\debug
    1214
    1315#
  • trunk/include/pdwin32.vac3.rel

    r2995 r3019  
    1 # $Id: pdwin32.vac3.rel,v 1.17 2000-03-04 19:04:14 bird Exp $
     1# $Id: pdwin32.vac3.rel,v 1.18 2000-03-04 23:45:31 sandervl Exp $
    22# ODIN / win32os2 Project
    33#
     
    1010RTLLIB   = cppom30.lib
    1111RTLLIB_O = cppom30o.lib
     12
     13OBJDIR   = .\bin\release
    1214
    1315#
  • trunk/include/pdwin32.vac36.dbg

    r2995 r3019  
    1 # $Id: pdwin32.vac36.dbg,v 1.9 2000-03-04 19:04:15 bird Exp $
     1# $Id: pdwin32.vac36.dbg,v 1.10 2000-03-04 23:45:31 sandervl Exp $
    22# ODIN / win32os2 Project
    33#
     
    1010RTLLIB   = cpprms36.lib
    1111RTLLIB_O = cpprmo36.lib
     12
     13OBJDIR   = .\bin\debug
    1214
    1315#
  • trunk/include/pdwin32.vac36.rel

    r2995 r3019  
    1 # $Id: pdwin32.vac36.rel,v 1.8 2000-03-04 19:04:15 bird Exp $
     1# $Id: pdwin32.vac36.rel,v 1.9 2000-03-04 23:45:31 sandervl Exp $
    22# ODIN / win32os2 Project
    33#
     
    1010RTLLIB   = cpprms36.lib
    1111RTLLIB_O = cpprmo36.lib
     12
     13OBJDIR   = .\bin\release
    1214
    1315#
Note: See TracChangeset for help on using the changeset viewer.