aboutsummaryrefslogtreecommitdiff
path: root/src/kadmin/testing/scripts/Makefile.in
blob: 65e646d7b0ff56c41475892e4f7dcbed78a8bd09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
PERL=@PERL@

.SUFFIXES: .plin .pl

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

all:: env-setup.sh $(GEN_SCRIPTS) restore_files.sh 

# Should only rebuild env_setup.sh here (use CONFIG_FILES=), but the weird krb5
# makefile post-processing is unconditional and would trash the makefile.
env-setup.sh: env-setup.stamp
env-setup.stamp: $(srcdir)/env-setup.shin config.status Makefile 
	$(SHELL) config.status
	chmod +x env-setup.sh
	touch env-setup.stamp

restore_files.sh:
	rm -f restore_files.sh
	ln -s $(srcdir)/save_files.sh restore_files.sh

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

clean::
	-rm -f $(GEN_SCRIPTS) *.tmp env-setup.sh env-setup.stamp restore_files.sh