Changeset 4654 for trunk/tools/common/common.mk
- Timestamp:
- Nov 21, 2000, 5:37:23 AM (25 years ago)
- 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:54bird Exp $1 # $Id: common.mk,v 1.3 2000-11-21 04:37:22 bird Exp $ 2 2 # 3 3 # Common definitions for tools. … … 13 13 14 14 15 16 15 # 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. 20 18 # OMF=0 indicates GCC+aout 21 19 # OMF=1 indicates GCC+OMF 22 20 # 23 !ifndef OMF24 COMMONLIB = $(PDWIN32_TCOMMON)\ commonicc.lib21 !ifndef GCC 22 COMMONLIB = $(PDWIN32_TCOMMON)\$(OBJDIR)\common.lib 25 23 !else 26 24 !if $(OMF) == 0 27 COMMONLIB = $(PDWIN32_TCOMMON)\ commongcc.a25 COMMONLIB = $(PDWIN32_TCOMMON)\$(OBJDIR)\common.a 28 26 !else 29 COMMONLIB = $(PDWIN32_TCOMMON)\ commongcc.lib27 COMMONLIB = $(PDWIN32_TCOMMON)\$(OBJDIR)\common.lib 30 28 !endif 31 29 !endif … … 35 33 # Add PDWIN32_TCOMMON to the C and C++ includes. 36 34 # 37 CINCLUDES = -I$(PDWIN32_TCOMMON) $(CINCLUDE )35 CINCLUDES = -I$(PDWIN32_TCOMMON) $(CINCLUDES) 38 36 37 38 # 39 # No internal libs cause we define our own internal libs. 40 # 41 NO_INTERNAL_LIBS = 1 42 INTLIBS = $(COMMONLIB) 43
Note:
See TracChangeset
for help on using the changeset viewer.