blob: 7f70238c0797e944c40d127bf406ae68ead1795d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $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) restore_files.sh
restore_files.sh:
ln -s save_files.sh restore_files.sh
%.pl: %.pl.in
-rm -f $@.tmp
echo "#!$(PERL)" > $@.tmp
sed 1d $@.in >> $@.tmp
chmod +x $@.tmp
mv $@.tmp $@
clean::
-rm -f $(GEN_SCRIPTS) *.tmp
|