#
# makefile for makehosts
#
# $Header: /tempf/aem/makehosts/RCS/Makefile,v 1.4 90/10/06 16:32:07 aem Exp $
#
# BINDHOSTS should be the bind host tables to use as input
#
# EXTRAS should be any extra you want tacked on to the end of
#	the file
#

SHAR = README makehosts hosts.sample.input hosts.sample.extra Makefile
BINDHOSTS = hosts.sample.input
EXTRAS = hosts.sample.extra

all:	hosts

hosts:	${BINDHOSTS} ${EXTRAS} makehosts
	@rm -f hosts
	makehosts ${BINDHOSTS} > hosts
	cat ${EXTRAS} >> hosts

clean:	
	rm -f hosts 

shar:	${SHAR}
	shar -v -b  ${SHAR} > makehosts.shar

