Sha256: 34571efcf7ed6c8239de2aca23859678570714667a8b912bcc88cb14660b762f

Contents?: true

Size: 1.9 KB

Versions: 135

Compression:

Stored size: 1.9 KB

Contents

# Time-stamp: <04/08/23 22:49:14 ptr>

#INCLUDES = -I$(SRCROOT)/include
INCLUDES :=

CXX := CC
CC := cc

ifdef TARGET_OS
CXX := ${TARGET_OS}-${CXX}
CC := ${TARGET_OS}-${CC}
endif

CXX_VERSION := $(shell ${CXX} -V 2>&1 | grep ${CXX} | awk '{ print $$4; }')

CXX_VERSION_MAJOR := $(shell echo ${CXX_VERSION} | awk 'BEGIN { FS = "."; } { print $$1; }')
CXX_VERSION_MINOR := $(shell echo ${CXX_VERSION} | awk 'BEGIN { FS = "."; } { print $$2; }')
CXX_VERSION_PATCH := $(shell echo ${CXX_VERSION} | awk 'BEGIN { FS = "."; } { if (NF > 2) {print $$3;}else{print "0"} }')

DEFS ?=
OPT ?=

OUTPUT_OPTION = -o $@
LINK_OUTPUT_OPTION = ${OUTPUT_OPTION}
CPPFLAGS = $(DEFS) $(INCLUDES)

OPT += -mt +w2
CCFLAGS = -erroff=doubunder -qoption ccfe -expand=1000 -library=no%Cstd,no%iostream,no%rwtools7-xildoff $(OPT) 
CFLAGS = $(OPT)
CXXFLAGS = -erroff=doubunder -qoption ccfe -expand=1000 -library=no%Cstd,no%iostream,no%rwtools7 -xildoff $(OPT)
CDEPFLAGS = -xM
CCDEPFLAGS = -xM

# STLport DEBUG mode specific defines
stldbg-static :	    DEFS += -D_STLP_DEBUG
stldbg-shared :     DEFS += -D_STLP_DEBUG
stldbg-static-dep : DEFS += -D_STLP_DEBUG
stldbg-shared-dep : DEFS += -D_STLP_DEBUG

# optimization and debug compiler flags
release-static : OPT += -xO2
release-shared : OPT += -xO2

dbg-static : OPT += -g
dbg-shared : OPT += -g
#dbg-static-dep : OPT += -g
#dbg-shared-dep : OPT += -g

stldbg-static : OPT += -g
stldbg-shared : OPT += -g
#stldbg-static-dep : OPT += -g
#stldbg-shared-dep : OPT += -g

# dependency output parser (dependencies collector)

DP_OUTPUT_DIR = | sed 's|\($*\)\.o[ :]*|$(OUTPUT_DIR)/\1.o $@ : |g' > $@; \
                           [ -s $@ ] || rm -f $@

DP_OUTPUT_DIR_DBG = | sed 's|\($*\)\.o[ :]*|$(OUTPUT_DIR_DBG)/\1.o $@ : |g' > $@; \
                           [ -s $@ ] || rm -f $@

DP_OUTPUT_DIR_STLDBG = | sed 's|\($*\)\.o[ :]*|$(OUTPUT_DIR_STLDBG)/\1.o $@ : |g' > $@; \
                           [ -s $@ ] || rm -f $@


Version data entries

135 entries across 135 versions & 2 rubygems

Version Path
rhodes-7.6.0 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-7.5.1 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-7.4.1 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-7.1.17 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-6.2.0 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-6.0.11 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-5.5.18 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-5.5.17 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-5.5.15 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-5.5.0.22 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-5.5.2 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-5.5.0.7 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-5.5.0.3 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-5.5.0 platform/shared/stlport/build/Makefiles/gmake/CC.mak
tauplatform-1.0.3 platform/shared/stlport/build/Makefiles/gmake/CC.mak
tauplatform-1.0.2 platform/shared/stlport/build/Makefiles/gmake/CC.mak
tauplatform-1.0.1 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-3.5.1.12 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-3.3.5 platform/shared/stlport/build/Makefiles/gmake/CC.mak
rhodes-3.4.2 platform/shared/stlport/build/Makefiles/gmake/CC.mak