summaryrefslogtreecommitdiffstats
path: root/src/kadmin/testing/scripts/Makefile.ov
blob: 335b636e7e65aef53e07febeb2db4a94cfbdf63d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id$

TOP = ../..
include $(TOP)/config.mk/template

GEN_SCRIPTS = compare_dump.pl fixup-conf-files.pl make-host-keytab.pl \
	simple_dump.pl verify_xrunner_report.pl

all:: $(GEN_SCRIPTS)

%.pl: %.pl.in
	-rm -f $@.tmp
	echo "#!$(PERL)" > $@.tmp
	sed 1d $@.in >> $@.tmp
	chmod +x $@.tmp
	mv $@.tmp $@

clean::
	-rm -f $(GEN_SCRIPTS) *.tmp