1# -*- Makefile -*- Time-stamp: <05/03/10 17:51:53 ptr> 2 3SRCROOT := ../.. 4COMPILER_NAME := gcc 5 6ALL_TAGS := release-shared dbg-shared stldbg-shared 7STLPORT_DIR := ../../.. 8include Makefile.inc 9include ${SRCROOT}/Makefiles/gmake/top.mak 10 11INCLUDES += -I${STLPORT_INCLUDE_DIR} 12DEFS += -D_STLP_NO_CUSTOM_IO 13 14ifdef STLP_BUILD_BOOST_PATH 15INCLUDES += -I${STLP_BUILD_BOOST_PATH} 16endif 17 18ifndef TARGET_OS 19release-shared: LDSEARCH = -L${STLPORT_LIB_DIR} -Wl,-R${STLPORT_LIB_DIR} 20dbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR} -Wl,-R${STLPORT_LIB_DIR} 21stldbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR} -Wl,-R${STLPORT_LIB_DIR} 22else 23release-shared: LDSEARCH = -L${STLPORT_LIB_DIR} 24dbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR} 25stldbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR} 26endif 27 28dbg-shared: DEFS += -D_STLP_DEBUG_UNINITIALIZED 29stldbg-shared: DEFS += -D_STLP_DEBUG_UNINITIALIZED 30 31