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