fuse: Specify format of disks (RHBZ#642934,CVE-2010-3851).
[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 # Build a partly-static library (for the binary distribution).
46
47 guestmount.static$(EXEEXT): $(guestmount_OBJECTS) $(guestmount_DEPENDENCIES)
48         $(top_srcdir)/relink-static.sh \
49         $(guestmount_LINK) $(guestmount_OBJECTS) -static $(guestmount_LDADD) $(guestmount_LIBS) -lpcre -lhivex -lmagic -lz
50
51 # Documentation.
52
53 man_MANS = guestmount.1
54
55 guestmount.1: guestmount.pod
56         $(POD2MAN) \
57           --section 1 \
58           -c "Virtualization Support" \
59           --name "guestmount" \
60           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
61           $< > $@-t; mv $@-t $@
62
63 noinst_DATA = \
64         $(top_builddir)/html/guestmount.1.html
65
66 $(top_builddir)/html/guestmount.1.html: guestmount.pod
67         mkdir -p $(top_builddir)/html
68         cd $(top_builddir) && pod2html \
69           --css 'pod.css' \
70           --htmldir html \
71           --outfile html/guestmount.1.html \
72           fuse/guestmount.pod
73
74 # Tests.
75
76 TESTS = test-fuse.sh
77 TESTS_ENVIRONMENT = \
78         top_builddir=..
79
80 endif