inspector: Determine guest architecture.
[libguestfs.git] / perl / Makefile.am
1 # libguestfs Perl bindings
2 # Copyright (C) 2009 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         Guestfs.xs \
21         examples/README \
22         examples/LICENSE \
23         examples/*.pl \
24         lib/Sys/Guestfs.pm \
25         lib/Sys/Guestfs/Lib.pm \
26         run-bindtests \
27         run-perl-tests \
28         bindtests.pl \
29         t/*.t \
30         typemap
31
32 if HAVE_PERL
33
34 # Interfacing automake and ExtUtils::MakeMaker known to be
35 # a nightmare, news at 11.
36
37 TESTS = run-bindtests run-perl-tests
38
39 TESTS_ENVIRONMENT = \
40         LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
41         LIBGUESTFS_PATH=$(top_builddir)/appliance
42
43 INSTALLDIRS = site
44
45 all: Makefile-pl
46         $(MAKE) -f Makefile-pl
47
48 Makefile-pl: Makefile.PL
49         perl Makefile.PL INSTALLDIRS=$(INSTALLDIRS) PREFIX=$(prefix)
50
51 # No!  Otherwise it is deleted before the clean-local rule runs.
52 #CLEANFILES = Makefile-pl
53
54 clean-local:
55         -$(MAKE) -f Makefile-pl clean
56         rm -f Makefile-pl
57
58 install-data-hook:
59         $(MAKE) -f Makefile-pl DESTDIR=$(DESTDIR) install
60
61 endif