first commit

This commit is contained in:
Jose Caban
2025-06-07 11:34:38 -04:00
commit 0eb2d7c07d
4708 changed files with 1500614 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# -*- makefile -*- Time-stamp: <05/03/29 23:39:01 ptr>
# $Id$
# this is the version number of needed STLport library for linking
LIBMAJOR = 5
LIBMINOR = 2
PRGNAME = eh_test
SRC_CPP = ../../../test/eh/TestClass.cpp \
../../../test/eh/main.cpp \
../../../test/eh/nc_alloc.cpp \
../../../test/eh/random_number.cpp \
../../../test/eh/test_algo.cpp \
../../../test/eh/test_algobase.cpp \
../../../test/eh/test_list.cpp \
../../../test/eh/test_slist.cpp \
../../../test/eh/test_bit_vector.cpp \
../../../test/eh/test_vector.cpp \
../../../test/eh/test_deque.cpp \
../../../test/eh/test_set.cpp \
../../../test/eh/test_map.cpp \
../../../test/eh/test_hash_map.cpp \
../../../test/eh/test_hash_set.cpp \
../../../test/eh/test_rope.cpp \
../../../test/eh/test_string.cpp \
../../../test/eh/test_bitset.cpp \
../../../test/eh/test_valarray.cpp

View File

@@ -0,0 +1,17 @@
SRCROOT := ../..
COMPILER_NAME := bcc
OBJ_EXT := obj
STLPORT_DIR := ../../..
include Makefile.inc
include ${SRCROOT}/Makefiles/gmake/top.mak
INCLUDES += -I${STLPORT_INCLUDE_DIR}
ifdef STLP_BUILD_BOOST_PATH
INCLUDES += -I${STLP_BUILD_BOOST_PATH}
endif
LDSEARCH = -L${STLPORT_LIB_DIR}

View File

@@ -0,0 +1,35 @@
!if !EXIST(..\..\Makefiles\nmake\config.mak)
!error No config file found, please run 'configure --help' first.
!endif
!include ..\..\Makefiles\nmake\config.mak
!ifndef COMPILER_NAME
!error No compiler set, please run 'configure --help' first and chose a compiler.
!endif
!if ("$(COMPILER_NAME)" != "evc3" && \
"$(COMPILER_NAME)" != "evc4" && \
"$(COMPILER_NAME)" != "evc8" && \
"$(COMPILER_NAME)" != "evc9")
!error You pick the wrong makefile, please rerun configure script and follow the instructions.
!endif
SRCROOT=../..
STLPORT_DIR=../../..
CROSS_COMPILING=1
!include Makefile.inc
INCLUDES=$(INCLUDES) /I "$(STLPORT_INCLUDE_DIR)" /I "cppunit" /I "$(STLPORT_DIR)/src/" /FI "warning_disable.h"
DEFS_REL = /D_STLP_USE_DYNAMIC_LIB
DEFS_DBG = /D_STLP_USE_DYNAMIC_LIB
DEFS_STLDBG = /D_STLP_USE_DYNAMIC_LIB
DEFS_STATIC_REL = /D_STLP_USE_STATIC_LIB
DEFS_STATIC_DBG = /D_STLP_USE_STATIC_LIB
DEFS_STATIC_STLDBG = /D_STLP_USE_STATIC_LIB
LDSEARCH=$(LDSEARCH) /LIBPATH:$(STLPORT_LIB_DIR)
!include $(SRCROOT)/Makefiles/nmake/top.mak

View File

@@ -0,0 +1,30 @@
# -*- Makefile -*- Time-stamp: <05/03/10 17:51:53 ptr>
SRCROOT := ../..
COMPILER_NAME := gcc
ALL_TAGS := release-shared dbg-shared stldbg-shared
STLPORT_DIR := ../../..
include Makefile.inc
include ${SRCROOT}/Makefiles/gmake/top.mak
INCLUDES += -I${STLPORT_INCLUDE_DIR}
DEFS += -D_STLP_NO_CUSTOM_IO
ifdef STLP_BUILD_BOOST_PATH
INCLUDES += -I${STLP_BUILD_BOOST_PATH}
endif
ifndef TARGET_OS
release-shared: LDSEARCH = -L${STLPORT_LIB_DIR} -Wl,-R${STLPORT_LIB_DIR}
dbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR} -Wl,-R${STLPORT_LIB_DIR}
stldbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR} -Wl,-R${STLPORT_LIB_DIR}
else
release-shared: LDSEARCH = -L${STLPORT_LIB_DIR}
dbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR}
stldbg-shared: LDSEARCH = -L${STLPORT_LIB_DIR}
endif
dbg-shared: DEFS += -D_STLP_DEBUG_UNINITIALIZED
stldbg-shared: DEFS += -D_STLP_DEBUG_UNINITIALIZED

View File

@@ -0,0 +1,5 @@
COMPILER_NAME=icl
!include msvc.mak

View File

@@ -0,0 +1,34 @@
!if !EXIST(..\..\Makefiles\nmake\config.mak)
!error No config file found, please run 'configure --help' first.
!endif
!include ..\..\Makefiles\nmake\config.mak
!ifndef COMPILER_NAME
!error No compiler set, please run 'configure --help' first and chose a compiler.
!endif
!if (("$(COMPILER_NAME)" != "vc6") && \
("$(COMPILER_NAME)" != "vc70") && \
("$(COMPILER_NAME)" != "vc71") && \
("$(COMPILER_NAME)" != "vc8") && \
("$(COMPILER_NAME)" != "vc9") && \
("$(COMPILER_NAME)" != "icl"))
!error '$(COMPILER_NAME)' not supported by this make file, please rerun 'configure' script and follow instructions.
!endif
SRCROOT=../..
STLPORT_DIR=../../..
!include Makefile.inc
!ifndef WITHOUT_STLPORT
INCLUDES=$(INCLUDES) /I$(STLPORT_INCLUDE_DIR) /I$(STLPORT_DIR)/src /FI warning_disable.h
!else
INCLUDES=$(INCLUDES) /I$(STLPORT_DIR)/src /FI warning_disable.h
DEFS=/DWITHOUT_STLPORT
!endif
LDSEARCH=$(LDSEARCH) /LIBPATH:$(STLPORT_LIB_DIR)
!include $(SRCROOT)/Makefiles/nmake/top.mak

View File

@@ -0,0 +1,27 @@
# -*- makefile -*- Time-stamp: <04/03/29 22:25:01 ptr>
# $Id$
ALLOBJS = $(ALLOBJS:../../../test/eh/=)
#
# rules for .cpp --> .o
#
{../../../test/eh}.cpp{$(OUTPUT_DIR)}.o:
$(COMPILE_cc_REL) $(OUTPUT_OPTION) $<
{../../../test/eh}.cpp{$(OUTPUT_DIR_DBG)}.o:
$(COMPILE_cc_DBG) $(OUTPUT_OPTION_DBG) $<
{../../../test/eh}.cpp{$(OUTPUT_DIR_STLDBG)}.o:
$(COMPILE_cc_STLDBG) $(OUTPUT_OPTION_STLDBG) $<
{../../../test/eh}.cpp{$(OUTPUT_DIR_A)}.o:
$(COMPILE_cc_STATIC_REL) $(OUTPUT_OPTION_STATIC) $<
{../../../test/eh}.cpp{$(OUTPUT_DIR_A_DBG)}.o:
$(COMPILE_cc_STATIC_DBG) $(OUTPUT_OPTION_STATIC_DBG) $<
{../../../test/eh}.cpp{$(OUTPUT_DIR_A_STLDBG)}.o:
$(COMPILE_cc_STATIC_STLDBG) $(OUTPUT_OPTION_STATIC_STLDBG) $<