1!if !EXIST(..\..\Makefiles\nmake\config.mak) 2!error No config file found, please run 'configure --help' first. 3!endif 4 5!include ..\..\Makefiles\nmake\config.mak 6 7!ifndef COMPILER_NAME 8!error No compiler set, please run 'configure --help' first and chose a compiler. 9!endif 10 11!if (("$(COMPILER_NAME)" != "vc6") && \ 12 ("$(COMPILER_NAME)" != "vc70") && \ 13 ("$(COMPILER_NAME)" != "vc71") && \ 14 ("$(COMPILER_NAME)" != "vc8") && \ 15 ("$(COMPILER_NAME)" != "vc9") && \ 16 ("$(COMPILER_NAME)" != "icl")) 17!error '$(COMPILER_NAME)' not supported by this make file, please rerun 'configure' script and follow instructions. 18!endif 19 20SRCROOT=../.. 21STLPORT_DIR=../../.. 22 23!include Makefile.inc 24 25!ifndef WITHOUT_STLPORT 26INCLUDES=$(INCLUDES) /I$(STLPORT_INCLUDE_DIR) /I$(STLPORT_DIR)/src /FI warning_disable.h 27!else 28INCLUDES=$(INCLUDES) /I$(STLPORT_DIR)/src /FI warning_disable.h 29DEFS=/DWITHOUT_STLPORT 30!endif 31 32LDSEARCH=$(LDSEARCH) /LIBPATH:$(STLPORT_LIB_DIR) 33 34!include $(SRCROOT)/Makefiles/nmake/top.mak 35