blob: 33297520e06f2d9f0cf110a6587e8cb2f40a5c67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
PERL=@PERL@
GEN_SCRIPTS = compare_dump.pl fixup-conf-files.pl make-host-keytab.pl \
simple_dump.pl verify_xrunner_report.pl qualname.pl
all:: $(GEN_SCRIPTS) restore_files.sh
restore_files.sh:
rm -f restore_files.sh
ln -s save_files.sh restore_files.sh
%.pl: %.pl.in
-rm -f $@.tmp
echo "#!$(PERL)" > $@.tmp
sed 1d $< >> $@.tmp
chmod +x $@.tmp
mv $@.tmp $@
clean::
-rm -f $(GEN_SCRIPTS) *.tmp
|