2 # Copyright (C) 2009-2010 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
20 CLEANFILES = stamp-guestfish.pod
22 bin_PROGRAMS = guestfish
28 guestfish-actions.pod \
29 guestfish-commands.pod \
43 guestfish-bash-completion.sh \
53 # These source files (all related to option parsing) are shared
54 # between guestfish and guestmount. Keep a convenient list here just
55 # so we know which ones are shared. These files must not include
56 # other guestfish files.
57 SHARED_SOURCE_FILES = \
66 $(SHARED_SOURCE_FILES) \
95 # This convenience library is solely to avoid compiler warnings
96 # in its generated sources.
97 librc_protocol_la_SOURCES = rc_protocol.c
98 librc_protocol_la_CFLAGS = -Wall -Wno-unused
100 # Build the command lookup perfect hash code. The generated code has
101 # lots of warnings so we must compile it in a separate mini-library.
102 libcmds_la_SOURCES = cmds_gperf.c
105 cmds_gperf.c: cmds_gperf.gperf
107 $(GPERF) -t $< > $@-t
111 -I$(top_srcdir)/src -I$(top_builddir)/src \
112 -I$(top_srcdir)/fish -I$(top_builddir)/fish \
113 -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
114 -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
115 -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
116 $(WARN_CFLAGS) $(WERROR_CFLAGS)
119 $(top_builddir)/src/libguestfs.la $(LIBREADLINE) -lm
121 # Make guestfish use the convenience libraries.
122 noinst_LTLIBRARIES = libcmds.la librc_protocol.la
123 guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la
126 rc_protocol.c: rc_protocol.x
128 $(RPCGEN) -c -o $@-t $<
129 sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
133 rc_protocol.h: rc_protocol.x
135 $(RPCGEN) -h -o $@-t $<
141 bin_SCRIPTS = virt-copy-in virt-copy-out virt-tar-in virt-tar-out
152 $(top_builddir)/html/guestfish.1.html \
153 $(top_builddir)/html/virt-copy-in.1.html \
154 $(top_builddir)/html/virt-copy-out.1.html \
155 $(top_builddir)/html/virt-tar-in.1.html \
156 $(top_builddir)/html/virt-tar-out.1.html
158 guestfish.1 $(top_builddir)/html/guestfish.1.html: stamp-guestfish.pod
160 stamp-guestfish.pod: guestfish.pod guestfish-actions.pod guestfish-commands.pod
161 $(top_srcdir)/podwrapper.sh \
163 --html $(top_builddir)/html/guestfish.1.html \
164 --insert guestfish-actions.pod:@ACTIONS@ \
165 --insert guestfish-commands.pod:@FISH_COMMANDS@ \
169 virt-copy-in.1 $(top_builddir)/html/virt-copy-in.1.html: stamp-virt-copy-in.pod
171 stamp-virt-copy-in.pod: virt-copy-in.pod
172 $(top_srcdir)/podwrapper.sh \
173 --man virt-copy-in.1 \
174 --html $(top_builddir)/html/virt-copy-in.1.html \
178 virt-copy-out.1 $(top_builddir)/html/virt-copy-out.1.html: stamp-virt-copy-out.pod
180 stamp-virt-copy-out.pod: virt-copy-out.pod
181 $(top_srcdir)/podwrapper.sh \
182 --man virt-copy-out.1 \
183 --html $(top_builddir)/html/virt-copy-out.1.html \
187 virt-tar-in.1 $(top_builddir)/html/virt-tar-in.1.html: stamp-virt-tar-in.pod
189 stamp-virt-tar-in.pod: virt-tar-in.pod
190 $(top_srcdir)/podwrapper.sh \
191 --man virt-tar-in.1 \
192 --html $(top_builddir)/html/virt-tar-in.1.html \
196 virt-tar-out.1 $(top_builddir)/html/virt-tar-out.1.html: stamp-virt-tar-out.pod
198 stamp-virt-tar-out.pod: virt-tar-out.pod
199 $(top_srcdir)/podwrapper.sh \
200 --man virt-tar-out.1 \
201 --html $(top_builddir)/html/virt-tar-out.1.html \
205 # Bash completion script.
207 bashcompletiondir = $(sysconfdir)/bash_completion.d
208 bashcompletion_DATA = guestfish-bash-completion.sh