#
# $Id: Makefile,v 1.2 1997/06/16 14:24:55 he Exp $
#

SCRIPTS=date.pl newtimelocal.pl plot.pl read-day-report.pl \
	read-hr-log.pl read-raw-log.pl read-week-report.pl \
	scaling.pl search.pl timelocal.pl tmpfiles.pl utils.pl

all:

install:
	@for s in ${SCRIPTS}; do \
		dst=${LIBDIR}/$$s; \
		tmp=/tmp/comtmp.$$$$; \
		echo sed -f ${.CURDIR}/../subst '<' $$s '>' $$tmp; \
		sed -f ${.CURDIR}/../subst < $$s > $$tmp; \
		echo install -c -m 444 $$tmp $$dst; \
		install -c -m 444 $$tmp $$dst; \
		echo rm -f $$tmp; \
		rm -f $$tmp; \
	done

obj:
clean:
cleandir:

.include "../Makefile.inc"
