#
# Install PERL resolver and Hesiod stuff
#
# @(#)Makefile	1.1 10/13/93
#
DESTDIR	=
LIB	= /usr/local/lib/perl

CODE	= resolv.pl
HDRS	= nameser.ph resolv.ph

install:	all

all:	$(CODE) $(HDRS)
	-@for f in $(CODE) $(HDRS); do \
		echo install -c -m 0444 $$f $(DESTDIR)$(LIB) | sh -x; \
	done
#
# End Makefile
