Version 1.7.1.
[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 # These source files (all related to option parsing) are shared
27 # between guestfish and guestmount.
28 SHARED_SOURCE_FILES = \
29         ../fish/inspect.c \
30         ../fish/options.h \
31         ../fish/options.c \
32         ../fish/virt.c
33
34 guestmount_SOURCES = \
35         $(SHARED_SOURCE_FILES) \
36         dircache.c \
37         dircache.h \
38         guestmount.c \
39         guestmount.h
40
41 guestmount_CFLAGS = \
42         -I$(top_srcdir)/src -I$(top_builddir)/src \
43         -I$(top_srcdir)/fish \
44         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
45         -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
46         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
47         $(FUSE_CFLAGS) $(LIBVIRT_CFLAGS) $(LIBXML2_CFLAGS) \
48         $(WARN_CFLAGS) $(WERROR_CFLAGS)
49
50 guestmount_LDADD = \
51         $(FUSE_LIBS) -lulockmgr \
52         $(LIBVIRT_LIBS) $(LIBXML2_LIBS) \
53         $(top_builddir)/src/libguestfs.la \
54         ../gnulib/lib/libgnu.la
55
56 # Build a partly-static library (for the binary distribution).
57
58 guestmount.static$(EXEEXT): $(guestmount_OBJECTS) $(guestmount_DEPENDENCIES)
59         $(top_srcdir)/relink-static.sh \
60         $(guestmount_LINK) $(guestmount_OBJECTS) -static $(guestmount_LDADD) $(guestmount_LIBS) -lpcre -lhivex -lmagic -lz -lm
61
62 # Documentation.
63
64 man_MANS = guestmount.1
65
66 guestmount.1: guestmount.pod
67         $(POD2MAN) \
68           --section 1 \
69           -c "Virtualization Support" \
70           --name "guestmount" \
71           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
72           $< > $@-t; mv $@-t $@
73
74 noinst_DATA = \
75         $(top_builddir)/html/guestmount.1.html
76
77 $(top_builddir)/html/guestmount.1.html: guestmount.pod
78         mkdir -p $(top_builddir)/html
79         cd $(top_builddir) && pod2html \
80           --css 'pod.css' \
81           --htmldir html \
82           --outfile html/guestmount.1.html \
83           fuse/guestmount.pod
84
85 # Tests.
86
87 TESTS = test-fuse.sh
88 TESTS_ENVIRONMENT = \
89         top_builddir=..
90
91 endif