1# -*- Makefile -*- Time-stamp: <03/07/09 18:08:47 ptr>
2# $Id$
3
4SRCROOT := ../..
5COMPILER_NAME := gcc
6
7STLPORT_LIB_DIR = /export/home/ptr/STLport.lab/STLport/lib
8STLPORT_INCLUDE_DIR = /export/home/ptr/STLport.lab/STLport/stlport
9include Makefile.inc
10include ${SRCROOT}/Makefiles/top.mak
11
12
13INCLUDES += -I$(SRCROOT)/include -I$(STLPORT_INCLUDE_DIR)
14
15ifeq ($(OSNAME),linux)
16release-shared:	LDSEARCH = -L${STLPORT_LIB_DIR}
17stldbg-shared:	LDSEARCH = -L${STLPORT_LIB_DIR}
18dbg-shared:	LDSEARCH = -L${STLPORT_LIB_DIR}
19endif
20
21ifeq ($(OSNAME),sunos)
22release-shared : LDLIBS = -lstlport_gcc -lrt
23stldbg-shared  : LDLIBS = -lstlport_gcc_stldebug -lrt
24dbg-shared     : LDLIBS = -lstlport_gcc -lrt
25else
26release-shared : LDLIBS = -lstlport_gcc
27stldbg-shared  : LDLIBS = -lstlport_gcc_stldebug
28dbg-shared     : LDLIBS = -lstlport_gcc
29endif
30
31