Update BUGS and PO files.
[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         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
37         $(FUSE_CFLAGS) \
38         $(WARN_CFLAGS) $(WERROR_CFLAGS)
39
40 guestmount_LDADD = \
41         $(FUSE_LIBS) -lulockmgr \
42         $(top_builddir)/src/libguestfs.la \
43         ../gnulib/lib/libgnu.la
44
45 # Documentation.
46
47 man_MANS = guestmount.1
48
49 guestmount.1: guestmount.pod
50         $(POD2MAN) \
51           --section 1 \
52           -c "Virtualization Support" \
53           --name "guestmount" \
54           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
55           $< > $@-t; mv $@-t $@
56
57 noinst_DATA = \
58         $(top_builddir)/html/guestmount.1.html
59
60 $(top_builddir)/html/guestmount.1.html: guestmount.pod
61         mkdir -p $(top_builddir)/html
62         cd $(top_builddir) && pod2html \
63           --css 'pod.css' \
64           --htmldir html \
65           --outfile html/guestmount.1.html \
66           fuse/guestmount.pod
67
68 # Tests.
69
70 TESTS = test-fuse.sh
71 TESTS_ENVIRONMENT = \
72         top_builddir=..
73
74 endif