regedit: Fix syntax for deleting registry keys (RHBZ#737944).
[hivex.git] / perl / Makefile.am
1 # hivex Perl bindings
2 # Copyright (C) 2009-2010 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 EXTRA_DIST = \
19         Makefile.PL.in \
20         run-perl-tests \
21         lib/Win/Hivex.pm \
22         lib/Win/Hivex/Regedit.pm \
23         Hivex.xs \
24         t/*.t \
25         typemap
26
27 if HAVE_PERL
28
29 # Interfacing automake and ExtUtils::MakeMaker known to be
30 # a nightmare, news at 11.
31
32 # hivex source dependencies
33 .PHONY: src_deps
34 src_deps: $(top_builddir)/lib/libhivex.la
35
36 TESTS = run-perl-tests
37
38 $(TESTS): src_deps all
39
40 TESTS_ENVIRONMENT = \
41         LD_LIBRARY_PATH=$(top_builddir)/lib/.libs
42
43 INSTALLDIRS = site
44
45 all: Makefile-pl src_deps
46         $(MAKE) -f Makefile-pl
47
48 Makefile-pl: Makefile.PL
49         -[ $(srcdir) != $(builddir) ] && cp -rsu $(abs_srcdir)/. $(builddir)/.
50         perl Makefile.PL INSTALLDIRS=$(INSTALLDIRS) PREFIX=$(prefix)
51
52 # No!  Otherwise it is deleted before the clean-local rule runs.
53 #CLEANFILES = Makefile-pl
54
55 clean-local:
56         -$(MAKE) -f Makefile-pl clean
57         rm -f Makefile-pl Makefile-pl.old
58
59 install-data-hook:
60         $(MAKE) -f Makefile-pl DESTDIR=$(DESTDIR) install
61
62 endif