evc.mak

来自「A port of the original STL to many platf」· MAK 代码 · 共 34 行

MAK
34
字号
!if !EXIST(..\..\Makefiles\config.mak)
!error No config file found, please run 'configure --help' first.
!endif

!include ..\..\Makefiles\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")
!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 "vc_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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?