📄 third_party_static_install.mak
字号:
# $Id: third_party_static_install.mak,v 1000.0 2004/06/16 17:36:30 gouriano Exp $################################################################### Main Installation makefile for third-party DLLs'## Author: Viatcheslav Gorelenkov##################################################################################################################################### Overridable variables# These can be modified on the NMAKE command line### This is the main path for installation. It can be overridden# on the command-lineINSTALL = .\bin################################################################### Do not override any of the variables below on the NMAKE command# line#!IF "$(INTDIR)" == ".\Debug"INTDIR = Debug!ELSEIF "$(INTDIR)" == ".\DebugMT"INTDIR = DebugMT!ELSEIF "$(INTDIR)" == ".\DebugDLL"INTDIR = DebugDLL!ELSEIF "$(INTDIR)" == ".\Release"INTDIR = Release!ELSEIF "$(INTDIR)" == ".\ReleaseMT"INTDIR = ReleaseMT!ELSEIF "$(INTDIR)" == ".\ReleaseDLL"INTDIR = ReleaseDLL!ENDIF## Third-party DLLs' installation path and rules#INSTALL_BINPATH = $(INSTALL)\$(INTDIR)THIRDPARTY_MAKEFILES_DIR = .!include $(THIRDPARTY_MAKEFILES_DIR)\Makefile.mkTHIRD_PARTY_LIBS = \ install_fltk \ install_berkeleydb \ install_sqlite \ install_wxwindows \ install_sybase \ install_mysql \ install_mssql ## Main Targets#all : dirs \ $(THIRD_PARTY_LIBS)clean : @echo Removing third-party DLLs' installation... @del /S /Q $(INSTALL_BINPATH)\*.dll################################################################# Target: Create output directory - may be not present if # C++ Toolkit was not build yet#dirs : @echo Creating installation target directory... @if not exist $(INSTALL_BINPATH) mkdir $(INSTALL_BINPATH)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -