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