reactos/lib/3rdparty/stlport/build/Makefiles/templates/Makefile-gcc-lib
Amine Khaldi 4efda499f7 [CMAKE]
Jerome Gardou:
- Add STLport 5.2.1 (yes, STLport, the c++ stl implementation) to build. For now, it works only in user mode.
- Link some c++ executables to it
- sol.exe : one step towards a complete and modern OS.
- Dedicated to Amine for his patience and his help.
- Might Break Things! (tm)

svn path=/branches/cmake-bringup/; revision=49046
2010-10-07 22:09:31 +00:00

31 lines
824 B
Makefile

# -*- Makefile -*- Time-stamp: <03/07/09 18:08:47 ptr>
# $Id$
SRCROOT := ../..
COMPILER_NAME := gcc
STLPORT_LIB_DIR = /export/home/ptr/STLport.lab/STLport/lib
STLPORT_INCLUDE_DIR = /export/home/ptr/STLport.lab/STLport/stlport
include Makefile.inc
include ${SRCROOT}/Makefiles/top.mak
INCLUDES += -I$(SRCROOT)/include -I$(STLPORT_INCLUDE_DIR)
ifeq ($(OSNAME),linux)
release-shared: LDSEARCH = -L${STLPORT_LIB_DIR}
stldbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR}
dbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR}
endif
ifeq ($(OSNAME),sunos)
release-shared : LDLIBS = -lstlport_gcc -lrt
stldbg-shared : LDLIBS = -lstlport_gcc_stldebug -lrt
dbg-shared : LDLIBS = -lstlport_gcc -lrt
else
release-shared : LDLIBS = -lstlport_gcc
stldbg-shared : LDLIBS = -lstlport_gcc_stldebug
dbg-shared : LDLIBS = -lstlport_gcc
endif