mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 02:42:33 -05:00
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
# Copyright (C) 1999-2001, 2004, 2007, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# $Id: b9t.mk,v 1.13 2007/06/19 23:46:59 tbox 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 = /build
|
|
BDIR = $(BASE)
|
|
MODULE = bind9
|
|
SDIR = $(HOME)/b9t/src
|
|
|
|
# as it says
|
|
CVSROOT = /proj/cvs/isc
|
|
|
|
# where the config, build and test output goes
|
|
RDIR = /proj/build-reports/$(MODULE)/hosts/$(PLATFORM)
|
|
|
|
all: clobber populate config build test
|
|
|
|
clobber:
|
|
@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`"
|
|
|