Changeset 4712 for trunk/tools/common/common.mk
- Timestamp:
- Dec 3, 2000, 12:27:03 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/common/common.mk
r4654 r4712 1 # $Id: common.mk,v 1. 3 2000-11-21 04:37:22bird Exp $1 # $Id: common.mk,v 1.4 2000-12-02 23:26:57 bird Exp $ 2 2 # 3 3 # Common definitions for tools. 4 4 # 5 # Requires that PDWIN32_TCOMMON is defined to point to the5 # Requires that ODIN32_TCOMMON is defined to point to the 6 6 # /tools/common directory 7 7 # 8 8 # 9 # Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@ pmsc.no)9 # Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@mynd.no) 10 10 # 11 11 # Project Odin Software License can be found in LICENSE.TXT … … 20 20 # 21 21 !ifndef GCC 22 COMMONLIB = $( PDWIN32_TCOMMON)\$(OBJDIR)\common.lib22 COMMONLIB = $(ODIN32_TCOMMON)\$(OBJDIR)\common.lib 23 23 !else 24 24 !if $(OMF) == 0 25 COMMONLIB = $( PDWIN32_TCOMMON)\$(OBJDIR)\common.a25 COMMONLIB = $(ODIN32_TCOMMON)\$(OBJDIR)\common.a 26 26 !else 27 COMMONLIB = $( PDWIN32_TCOMMON)\$(OBJDIR)\common.lib27 COMMONLIB = $(ODIN32_TCOMMON)\$(OBJDIR)\common.lib 28 28 !endif 29 29 !endif … … 31 31 32 32 # 33 # Add PDWIN32_TCOMMON to the C and C++ includes.33 # Add ODIN32_TCOMMON to the C and C++ includes. 34 34 # 35 CINCLUDES = -I$( PDWIN32_TCOMMON) $(CINCLUDES)35 CINCLUDES = -I$(ODIN32_TCOMMON) $(CINCLUDES) 36 36 37 37 … … 42 42 INTLIBS = $(COMMONLIB) 43 43 44 45 # 46 # Macro for the post include. 47 # 48 ODIN32_TCOMMON_POST_INC = $(ODIN32_TCOMMON)/common.post.mk 49
Note:
See TracChangeset
for help on using the changeset viewer.