2 # Copyright (C) 2009-2011 Red Hat Inc.
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.
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.
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.
18 include $(top_srcdir)/subdir-rules.mk
22 stamp-virt-copy-in.pod \
23 stamp-virt-copy-out.pod \
24 stamp-virt-tar-in.pod \
25 stamp-virt-tar-out.pod
27 bin_PROGRAMS = guestfish
33 guestfish-actions.pod \
34 guestfish-commands.pod \
48 guestfish-bash-completion.sh \
49 libguestfs-tools.conf \
59 # These source files (all related to option parsing) are shared
60 # between guestfish and guestmount. Keep a convenient list here just
61 # so we know which ones are shared. These files must not include
62 # other guestfish files.
63 SHARED_SOURCE_FILES = \
73 $(SHARED_SOURCE_FILES) \
102 # This convenience library is solely to compile its generated sources with
104 librc_protocol_la_SOURCES = rc_protocol.c rc_protocol.h
105 librc_protocol_la_CFLAGS = -Wall -Wno-unused -fno-strict-aliasing
107 # Build the command lookup perfect hash code. The generated code has
108 # lots of warnings so we must compile it in a separate mini-library.
109 libcmds_la_SOURCES = cmds_gperf.c
112 cmds_gperf.c: cmds_gperf.gperf
114 $(GPERF) -t $< > $@-t
118 -I$(top_srcdir)/src -I$(top_builddir)/src \
119 -I$(top_srcdir)/fish -I$(top_builddir)/fish \
120 -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
121 -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
122 -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
123 $(WARN_CFLAGS) $(WERROR_CFLAGS) \
129 $(top_builddir)/src/libguestfs.la -lm
131 # Make guestfish use the convenience libraries.
132 noinst_LTLIBRARIES = libcmds.la librc_protocol.la
133 guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la
136 rc_protocol.c: rc_protocol.x
138 $(RPCGEN) -c -o $@-t $<
139 sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
143 rc_protocol.h: rc_protocol.x
145 $(RPCGEN) -h -o $@-t $<
151 bin_SCRIPTS = virt-copy-in virt-copy-out virt-tar-in virt-tar-out
162 $(top_builddir)/html/guestfish.1.html \
163 $(top_builddir)/html/virt-copy-in.1.html \
164 $(top_builddir)/html/virt-copy-out.1.html \
165 $(top_builddir)/html/virt-tar-in.1.html \
166 $(top_builddir)/html/virt-tar-out.1.html
168 guestfish.1 $(top_builddir)/html/guestfish.1.html: stamp-guestfish.pod
170 stamp-guestfish.pod: guestfish.pod guestfish-actions.pod guestfish-commands.pod
171 $(top_srcdir)/podwrapper.sh \
173 --html $(top_builddir)/html/guestfish.1.html \
174 --insert guestfish-actions.pod:@ACTIONS@ \
175 --insert guestfish-commands.pod:@FISH_COMMANDS@ \
179 virt-copy-in.1 $(top_builddir)/html/virt-copy-in.1.html: stamp-virt-copy-in.pod
181 stamp-virt-copy-in.pod: virt-copy-in.pod
182 $(top_srcdir)/podwrapper.sh \
183 --man virt-copy-in.1 \
184 --html $(top_builddir)/html/virt-copy-in.1.html \
188 virt-copy-out.1 $(top_builddir)/html/virt-copy-out.1.html: stamp-virt-copy-out.pod
190 stamp-virt-copy-out.pod: virt-copy-out.pod
191 $(top_srcdir)/podwrapper.sh \
192 --man virt-copy-out.1 \
193 --html $(top_builddir)/html/virt-copy-out.1.html \
197 virt-tar-in.1 $(top_builddir)/html/virt-tar-in.1.html: stamp-virt-tar-in.pod
199 stamp-virt-tar-in.pod: virt-tar-in.pod
200 $(top_srcdir)/podwrapper.sh \
201 --man virt-tar-in.1 \
202 --html $(top_builddir)/html/virt-tar-in.1.html \
206 virt-tar-out.1 $(top_builddir)/html/virt-tar-out.1.html: stamp-virt-tar-out.pod
208 stamp-virt-tar-out.pod: virt-tar-out.pod
209 $(top_srcdir)/podwrapper.sh \
210 --man virt-tar-out.1 \
211 --html $(top_builddir)/html/virt-tar-out.1.html \
215 # libguestfs tools config file.
217 toolsconfdir = $(sysconfdir)
218 toolsconf_DATA = libguestfs-tools.conf
220 # Bash completion script.
222 bashcompletiondir = $(sysconfdir)/bash_completion.d
223 bashcompletion_DATA = guestfish-bash-completion.sh