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

makefile rule changes

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 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 
Note: See TracChangeset for help on using the changeset viewer.