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