⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 b9t.mk

📁 bind 9.3结合mysql数据库
💻 MK
字号:
# Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")# Copyright (C) 1999-2001  Internet Software Consortium.## Permission to use, copy, modify, and distribute this software for any# purpose with or without fee is hereby granted, provided that the above# copyright notice and this permission notice appear in all copies.## THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR# PERFORMANCE OF THIS SOFTWARE.# $Id: b9t.mk,v 1.10.206.1 2004/03/06 10:21:34 marka Exp $## makefile to configure, build and test bind9# this is run by cron (user wpk) on aa, sol, irix, hp and aix# $PLATFORM is set in the environment by cron#BASE	= /buildBDIR	= $(BASE)MODULE	= bind9SDIR	= $(HOME)/b9t/src# as it saysCVSROOT	= /proj/cvs/isc# where the config, build and test output goesRDIR	= /proj/build-reports/$(MODULE)/hosts/$(PLATFORM)all:	clobber populate config build testclobber:	@echo "CLOBBBER `date`"	@if test ! -d $(BDIR) ; then mkdir -p $(BDIR) > /dev/null 2>&1 ; fi	@( cd $(BDIR) && rm -fr $(MODULE) )	@echo "DONE `date`"populate:	@echo "POPULATE `date`"	@( cd $(BDIR) && tar -xvf $(SDIR)/$(MODULE).tar ) > $(RDIR)/.populate 2>&1	@echo "DONE `date`"config:	@echo "CONFIG `date`"	@( cd $(BDIR)/$(MODULE) && ./configure ) > $(RDIR)/.config 2>&1	@echo "DONE `date`"build:	@echo "BUILD `date`"	@( cd $(BDIR)/$(MODULE) && $(MAKE) -k all ) > $(RDIR)/.build 2>&1	@echo "DONE `date`"test:	@echo "TEST `date`"	-@( cd $(BDIR)/$(MODULE)/bin/tests && $(MAKE) test ) > $(RDIR)/.test 2>&1	@echo "DONE `date`"tarsrc:	@echo "TARSRC `date`"	@rm -fr $(SDIR)/$(MODULE)	@( cd $(SDIR) && cvs -d $(CVSROOT) checkout $(MODULE) && tar -cvf $(MODULE).tar $(MODULE) )	@echo "DONE `date`"

⌨️ 快捷键说明

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