5ffdb95be872141829220ea0d7d3f4a2425b0883
[libguestfs.git] / fuse / Makefile.am
1 # libguestfs
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 include $(top_srcdir)/subdir-rules.mk
19
20 EXTRA_DIST = guestmount.pod test-fuse.sh
21
22 if HAVE_FUSE
23
24 bin_PROGRAMS = guestmount
25
26 guestmount_SOURCES = \
27         dircache.c \
28         dircache.h \
29         guestmount.c \
30         guestmount.h
31
32 guestmount_CFLAGS = \
33         -I$(top_srcdir)/src -I$(top_builddir)/src \
34         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
35         -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
36         $(FUSE_CFLAGS) \
37         $(WARN_CFLAGS) $(WERROR_CFLAGS)
38
39 guestmount_LDADD = \
40         $(FUSE_LIBS) -lulockmgr \
41         $(top_builddir)/src/libguestfs.la \
42         ../gnulib/lib/libgnu.la
43
44 # Documentation.
45
46 man_MANS = guestmount.1
47
48 guestmount.1: guestmount.pod
49         $(POD2MAN) \
50           --section 1 \
51           -c "Virtualization Support" \
52           --name "guestmount" \
53           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
54           $< > $@-t; mv $@-t $@
55
56 noinst_DATA = \
57         $(top_builddir)/html/guestmount.1.html
58
59 $(top_builddir)/html/guestmount.1.html: guestmount.pod
60         mkdir -p $(top_builddir)/html
61         cd $(top_builddir) && pod2html \
62           --css 'pod.css' \
63           --htmldir html \
64           --outfile html/guestmount.1.html \
65           fuse/guestmount.pod
66
67 # Tests.
68
69 TESTS = test-fuse.sh
70 TESTS_ENVIRONMENT = \
71         top_builddir=..
72
73 endif