1# -*- Makefile -*- Time-stamp: <05/03/10 17:51:53 ptr> 2 3SRCROOT := ../.. 4COMPILER_NAME := bcc 5 6STLPORT_DIR := ../../.. 7include Makefile.inc 8include ${SRCROOT}/Makefiles/gmake/top.mak 9 10INCLUDES += -I${STLPORT_INCLUDE_DIR} 11 12ifneq ($(OSNAME),linux) 13OBJ_EXT := obj 14else 15DEFS += -D_GNU_SOURCE 16GCC_VERSION = $(shell gcc -dumpversion) 17DEFS += -DGCC_VERSION=$(GCC_VERSION) 18endif 19 20dbg-shared: DEFS += -D_STLP_DEBUG_UNINITIALIZED 21stldbg-shared: DEFS += -D_STLP_DEBUG_UNINITIALIZED 22dbg-static: DEFS += -D_STLP_DEBUG_UNINITIALIZED 23stldbg-static: DEFS += -D_STLP_DEBUG_UNINITIALIZED 24 25ifdef STLP_BUILD_BOOST_PATH 26INCLUDES += -I${STLP_BUILD_BOOST_PATH} 27endif 28 29LDSEARCH = -L${STLPORT_LIB_DIR} 30 31