Ignore:
Timestamp:
Nov 21, 2000, 5:37:23 AM (25 years ago)
Author:
bird
Message:

Addopted makestyle new style. common.lib goes into $(OBJDIR).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/common/common.mk

    r4620 r4654  
    1 # $Id: common.mk,v 1.2 2000-11-19 08:29:54 bird Exp $
     1# $Id: common.mk,v 1.3 2000-11-21 04:37:22 bird Exp $
    22#
    33# Common definitions for tools.
     
    1313
    1414
    15 
    1615#
    17 # Make a suggestion of which common<gcc|icc>.<a|lib> library
    18 # to use.
    19 # not defined OMF indicates ICC
     16# Make a suggestion of which common.<a|lib> library to use.
     17# Not defined OMF indicates VAC or Watcom.
    2018# OMF=0 indicates GCC+aout
    2119# OMF=1 indicates GCC+OMF
    2220#
    23 !ifndef OMF
    24 COMMONLIB = $(PDWIN32_TCOMMON)\commonicc.lib
     21!ifndef GCC
     22COMMONLIB = $(PDWIN32_TCOMMON)\$(OBJDIR)\common.lib
    2523!else
    2624    !if $(OMF) == 0
    27 COMMONLIB = $(PDWIN32_TCOMMON)\commongcc.a
     25COMMONLIB = $(PDWIN32_TCOMMON)\$(OBJDIR)\common.a
    2826    !else
    29 COMMONLIB = $(PDWIN32_TCOMMON)\commongcc.lib
     27COMMONLIB = $(PDWIN32_TCOMMON)\$(OBJDIR)\common.lib
    3028    !endif
    3129!endif
     
    3533# Add PDWIN32_TCOMMON to the C and C++ includes.
    3634#
    37 CINCLUDES = -I$(PDWIN32_TCOMMON) $(CINCLUDE)
     35CINCLUDES = -I$(PDWIN32_TCOMMON) $(CINCLUDES)
    3836
     37
     38#
     39# No internal libs cause we define our own internal libs.
     40#
     41NO_INTERNAL_LIBS = 1
     42INTLIBS = $(COMMONLIB)
     43
Note: See TracChangeset for help on using the changeset viewer.