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
45 # These source files (all related to option parsing) are shared
46 # between guestfish and guestmount. Keep a convenient list here just
47 # so we know which ones are shared. These files must not include
48 # other guestfish files.
49 SHARED_SOURCE_FILES = \
58 $(SHARED_SOURCE_FILES) \
87 # This convenience library is solely to avoid compiler warnings
88 # in its generated sources.
89 librc_protocol_la_SOURCES = rc_protocol.c
90 librc_protocol_la_CFLAGS = -Wall -Wno-unused
92 # Build the command lookup perfect hash code. The generated code has
93 # lots of warnings so we must compile it in a separate mini-library.
94 libcmds_la_SOURCES = cmds_gperf.c
97 cmds_gperf.c: cmds_gperf.gperf
103 -I$(top_srcdir)/src -I$(top_builddir)/src \
104 -I$(top_srcdir)/fish -I$(top_builddir)/fish \
105 -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
106 -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
107 -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
108 $(WARN_CFLAGS) $(WERROR_CFLAGS)
111 $(top_builddir)/src/libguestfs.la $(LIBREADLINE) -lm
113 # Make guestfish use the convenience libraries.
114 noinst_LTLIBRARIES = libcmds.la librc_protocol.la
115 guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la
118 rc_protocol.c: rc_protocol.x
120 $(RPCGEN) -c -o $@-t $<
121 sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
125 rc_protocol.h: rc_protocol.x
127 $(RPCGEN) -h -o $@-t $<
133 man_MANS = guestfish.1
134 noinst_DATA = $(top_builddir)/html/guestfish.1.html
136 guestfish.1 $(top_builddir)/html/guestfish.1.html: stamp-guestfish.pod
138 stamp-guestfish.pod: guestfish.pod guestfish-actions.pod guestfish-commands.pod
139 $(top_srcdir)/podwrapper.sh \
141 --html $(top_builddir)/html/guestfish.1.html \
142 --insert guestfish-actions.pod:@ACTIONS@ \
143 --insert guestfish-commands.pod:@FISH_COMMANDS@ \
147 # Bash completion script.
149 bashcompletiondir = $(sysconfdir)/bash_completion.d
150 bashcompletion_DATA = guestfish-bash-completion.sh