87f937c6c5e8379e351c002413ec28e2f35c9729
[libguestfs.git] / fish / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009-2011 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 CLEANFILES = \
21         stamp-guestfish.pod \
22         stamp-virt-copy-in.pod \
23         stamp-virt-copy-out.pod \
24         stamp-virt-tar-in.pod \
25         stamp-virt-tar-out.pod
26
27 bin_PROGRAMS = guestfish
28
29 generator_built = \
30         cmds.c \
31         cmds_gperf.gperf \
32         completion.c \
33         guestfish-actions.pod \
34         guestfish-commands.pod \
35         prepopts.h \
36         prepopts.c
37
38 BUILT_SOURCES = \
39         $(generator_built) \
40         cmds_gperf.c \
41         rc_protocol.h \
42         rc_protocol.c
43
44 EXTRA_DIST = \
45         $(BUILT_SOURCES) \
46         rc_protocol.x \
47         guestfish.pod \
48         guestfish-bash-completion.sh \
49         libguestfs-tools.conf \
50         virt-copy-in \
51         virt-copy-out \
52         virt-tar-in \
53         virt-tar-out \
54         virt-copy-in.pod \
55         virt-copy-out.pod \
56         virt-tar-in.pod \
57         virt-tar-out.pod
58
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 = \
64         config.c \
65         inspect.c \
66         keys.c \
67         options.h \
68         options.c \
69         virt.c
70
71 guestfish_SOURCES = \
72         $(generator_built) \
73         $(SHARED_SOURCE_FILES) \
74         alloc.c \
75         cmds_gperf.h \
76         copy.c \
77         destpaths.c \
78         echo.c \
79         edit.c \
80         fish.c \
81         fish.h \
82         glob.c \
83         help.c \
84         hexedit.c \
85         lcd.c \
86         man.c \
87         more.c \
88         prep.c \
89         prep_disk.c \
90         prep_part.c \
91         prep_fs.c \
92         prep_lv.c \
93         prep_boot.c \
94         progress.c \
95         rc.c \
96         reopen.c \
97         rmsd.h \
98         supported.c \
99         tilde.c \
100         time.c
101
102 # This convenience library is solely to compile its generated sources with
103 # custom flags.
104 librc_protocol_la_SOURCES = rc_protocol.c rc_protocol.h
105 librc_protocol_la_CFLAGS = -Wall -Wno-unused -fno-strict-aliasing
106
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
110 libcmds_la_CFLAGS =
111
112 cmds_gperf.c: cmds_gperf.gperf
113         rm -f $@
114         $(GPERF) -t $< > $@-t
115         mv $@-t $@
116
117 guestfish_CFLAGS = \
118         -I$(top_srcdir)/src -I$(top_builddir)/src \
119         -I$(top_srcdir)/fish -I$(top_builddir)/fish \
120         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
121         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
122         $(WARN_CFLAGS) $(WERROR_CFLAGS) \
123         $(LIBCONFIG_CFLAGS)
124
125 guestfish_LDADD = \
126         $(LIBCONFIG_LIBS) \
127         $(LIBREADLINE) \
128         $(top_builddir)/src/libguestfs.la -lm
129
130 # Make guestfish use the convenience libraries.
131 noinst_LTLIBRARIES = libcmds.la librc_protocol.la
132 guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la
133
134 if HAVE_RPCGEN
135 rc_protocol.c: rc_protocol.x
136         rm -f $@-t $@-t2
137         $(RPCGEN) -c -o $@-t $<
138         sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
139         rm $@-t
140         mv $@-t2 $@
141
142 rc_protocol.h: rc_protocol.x
143         rm -f $@-t
144         $(RPCGEN) -h -o $@-t $<
145         mv $@-t $@
146 endif
147
148 # Script wrappers.
149
150 bin_SCRIPTS = virt-copy-in virt-copy-out virt-tar-in virt-tar-out
151
152 # Manual pages.
153
154 man_MANS = \
155         guestfish.1 \
156         virt-copy-in.1 \
157         virt-copy-out.1 \
158         virt-tar-in.1 \
159         virt-tar-out.1
160 noinst_DATA = \
161         $(top_builddir)/html/guestfish.1.html \
162         $(top_builddir)/html/virt-copy-in.1.html \
163         $(top_builddir)/html/virt-copy-out.1.html \
164         $(top_builddir)/html/virt-tar-in.1.html \
165         $(top_builddir)/html/virt-tar-out.1.html
166
167 guestfish.1 $(top_builddir)/html/guestfish.1.html: stamp-guestfish.pod
168
169 stamp-guestfish.pod: guestfish.pod guestfish-actions.pod guestfish-commands.pod
170         $(top_srcdir)/podwrapper.sh \
171           --man guestfish.1 \
172           --html $(top_builddir)/html/guestfish.1.html \
173           --insert guestfish-actions.pod:@ACTIONS@ \
174           --insert guestfish-commands.pod:@FISH_COMMANDS@ \
175           $<
176         touch $@
177
178 virt-copy-in.1 $(top_builddir)/html/virt-copy-in.1.html: stamp-virt-copy-in.pod
179
180 stamp-virt-copy-in.pod: virt-copy-in.pod
181         $(top_srcdir)/podwrapper.sh \
182           --man virt-copy-in.1 \
183           --html $(top_builddir)/html/virt-copy-in.1.html \
184           $<
185         touch $@
186
187 virt-copy-out.1 $(top_builddir)/html/virt-copy-out.1.html: stamp-virt-copy-out.pod
188
189 stamp-virt-copy-out.pod: virt-copy-out.pod
190         $(top_srcdir)/podwrapper.sh \
191           --man virt-copy-out.1 \
192           --html $(top_builddir)/html/virt-copy-out.1.html \
193           $<
194         touch $@
195
196 virt-tar-in.1 $(top_builddir)/html/virt-tar-in.1.html: stamp-virt-tar-in.pod
197
198 stamp-virt-tar-in.pod: virt-tar-in.pod
199         $(top_srcdir)/podwrapper.sh \
200           --man virt-tar-in.1 \
201           --html $(top_builddir)/html/virt-tar-in.1.html \
202           $<
203         touch $@
204
205 virt-tar-out.1 $(top_builddir)/html/virt-tar-out.1.html: stamp-virt-tar-out.pod
206
207 stamp-virt-tar-out.pod: virt-tar-out.pod
208         $(top_srcdir)/podwrapper.sh \
209           --man virt-tar-out.1 \
210           --html $(top_builddir)/html/virt-tar-out.1.html \
211           $<
212         touch $@
213
214 # libguestfs tools config file.
215
216 toolsconfdir = $(sysconfdir)
217 toolsconf_DATA = libguestfs-tools.conf
218
219 # Bash completion script.
220
221 bashcompletiondir = $(sysconfdir)/bash_completion.d
222 bashcompletion_DATA = guestfish-bash-completion.sh