third_party_static_install.mak
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:2k
源码类别:
生物技术
开发平台:
C/C++
- # $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-line
- INSTALL = .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.mk
- THIRD_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)