You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
861 B
47 lines
861 B
# |
|
# sparc-linux.inc |
|
# |
|
# Makefile definitions for Linux Intel, Redhat executables and libraries |
|
# Modified to use gcc 2.95.2 and STLport 4.0 beta 5 |
|
# |
|
LIBDIR=../../lib |
|
LIBPRE=$(LIBDIR)/$(SYSPRE) |
|
|
|
BINDIR=../../bin |
|
BINPRE=$(BINDIR)/$(SYSPRE) |
|
|
|
# |
|
# General variable definitions |
|
# |
|
|
|
GMAKE = /usr/bin/gmake |
|
CC = g++ |
|
CXX = $(CC) |
|
AR = ar |
|
SYSDEF=-D_SOLARIS -D_UNIX -D_SPARC -D_GCC |
|
STLPORT=../STLport-4.0b5 |
|
|
|
# |
|
# release flags |
|
# |
|
|
|
CXXFLAGS_R = -I.. -I$(STLPORT)/stlport |
|
DEFINES_R = -DNDEBUG $(SYSDEF) |
|
LINKFLAGS_R = |
|
LIBRARYFLAGS_R = -L$(STLPORT)/lib -lm -lstlport_gcc -lsocket -lnsl |
|
ARFLAGS_R = crv |
|
|
|
# |
|
# debug flags |
|
# |
|
|
|
CXXFLAGS_D = -I.. -I$(STLPORT)/stlport -g |
|
DEFINES_D = -D_DEBUG -D_DEBUG_DB $(SYSDEF) |
|
LINKFLAGS_D = |
|
LIBRARYFLAGS_D = -L$(STLPORT)/lib -lm -lstlport_gcc -lsocket -lnsl -lw |
|
|
|
# |
|
# depend flags |
|
# |
|
|
|
DEPEND_FLAGS = -M -w -I.. -I$(STLPORT)/stlport -DNDEBUG $(SYSDEF)
|
|
|