virt-resize: Document guest boot stops at "GRUB" (RHBZ#640961).
[libguestfs.git] / fish / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009-2010 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 bin_PROGRAMS = guestfish
21
22 generator_built = \
23         cmds.c \
24         completion.c \
25         guestfish-actions.pod \
26         guestfish-commands.pod \
27         prepopts.h \
28         prepopts.c
29
30 BUILT_SOURCES = \
31         $(generator_built) \
32         rc_protocol.h \
33         rc_protocol.c
34
35 EXTRA_DIST = \
36         $(BUILT_SOURCES) \
37         rc_protocol.x \
38         guestfish.pod \
39         guestfish-bash-completion.sh
40
41 guestfish_SOURCES = \
42         $(generator_built) \
43         alloc.c \
44         copy.c \
45         destpaths.c \
46         echo.c \
47         edit.c \
48         fish.c \
49         fish.h \
50         glob.c \
51         hexedit.c \
52         inspect.c \
53         lcd.c \
54         man.c \
55         more.c \
56         prep.c \
57         prep_disk.c \
58         prep_part.c \
59         prep_fs.c \
60         prep_lv.c \
61         prep_boot.c \
62         progress.c \
63         rc.c \
64         reopen.c \
65         rmsd.h \
66         supported.c \
67         tilde.c \
68         time.c \
69         virt.c
70
71 # This convenience library is solely to avoid compiler warnings
72 # in its generated sources.
73 librc_protocol_la_SOURCES = rc_protocol.c
74 librc_protocol_la_CFLAGS = -Wall -Wno-unused
75
76 guestfish_CFLAGS = \
77         -I$(top_srcdir)/src -I$(top_builddir)/src \
78         -I$(top_srcdir)/fish -I$(top_builddir)/fish \
79         -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
80         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
81         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
82         $(LIBVIRT_CFLAGS) $(LIBXML2_CFLAGS) \
83         $(WARN_CFLAGS) $(WERROR_CFLAGS)
84
85 guestfish_LDADD = \
86         $(LIBVIRT_LIBS) $(LIBXML2_LIBS) \
87         $(top_builddir)/src/libguestfs.la $(LIBREADLINE) -lm
88
89 # Make libguestfs use the convenience library.
90 noinst_LTLIBRARIES = librc_protocol.la
91 guestfish_LDADD += librc_protocol.la ../gnulib/lib/libgnu.la
92
93 if HAVE_RPCGEN
94 rc_protocol.c: rc_protocol.x
95         rm -f $@-t $@-t2
96         $(RPCGEN) -c -o $@-t $<
97         sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
98         rm $@-t
99         mv $@-t2 $@
100
101 rc_protocol.h: rc_protocol.x
102         rm -f $@-t
103         $(RPCGEN) -h -o $@-t $<
104         mv $@-t $@
105 endif
106
107 # Build a partly-static library (for the binary distribution).
108
109 guestfish.static$(EXEEXT): $(guestfish_OBJECTS) $(guestfish_DEPENDENCIES)
110         $(top_srcdir)/relink-static.sh \
111         $(guestfish_LINK) $(guestfish_OBJECTS) -static $(guestfish_LDADD) $(guestfish_LIBS) -ltinfo -lpcre -lhivex -lmagic -lz -lm
112
113 # Manual page.
114 # guestfish-actions.pod and guestfish-commands.pod are autogenerated.
115 # There is no include mechanism for POD, so we have to do it by hand.
116
117 man_MANS = guestfish.1
118
119 guestfish.1: guestfish.pod guestfish-actions.pod guestfish-commands.pod
120         sed \
121           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
122           -e '/@FISH_COMMANDS@/rguestfish-commands.pod' -e 's/@FISH_COMMANDS@//' \
123           < $< | \
124         $(POD2MAN) \
125           --section 1 \
126           -c "Virtualization Support" \
127           --name "guestfish" \
128           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
129           > $@
130
131 # Bash completion script.
132
133 bashcompletiondir = $(sysconfdir)/bash_completion.d
134 bashcompletion_DATA = guestfish-bash-completion.sh