fish: Add 'display' command for displaying graphical files.
[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         display.c \
79         echo.c \
80         edit.c \
81         fish.c \
82         fish.h \
83         glob.c \
84         help.c \
85         hexedit.c \
86         lcd.c \
87         man.c \
88         more.c \
89         prep.c \
90         prep_disk.c \
91         prep_part.c \
92         prep_fs.c \
93         prep_lv.c \
94         prep_boot.c \
95         progress.c \
96         rc.c \
97         reopen.c \
98         rmsd.h \
99         supported.c \
100         tilde.c \
101         time.c
102
103 # This convenience library is solely to compile its generated sources with
104 # custom flags.
105 librc_protocol_la_SOURCES = rc_protocol.c rc_protocol.h
106 librc_protocol_la_CFLAGS = -Wall -Wno-unused -fno-strict-aliasing
107
108 # Build the command lookup perfect hash code.  The generated code has
109 # lots of warnings so we must compile it in a separate mini-library.
110 libcmds_la_SOURCES = cmds_gperf.c
111 libcmds_la_CFLAGS =
112
113 cmds_gperf.c: cmds_gperf.gperf
114         rm -f $@
115         $(GPERF) -t $< > $@-t
116         mv $@-t $@
117
118 guestfish_CFLAGS = \
119         -DGUESTFS_WARN_DEPRECATED=1 \
120         -I$(top_srcdir)/src -I$(top_builddir)/src \
121         -I$(top_srcdir)/fish -I$(top_builddir)/fish \
122         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
123         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
124         $(WARN_CFLAGS) $(WERROR_CFLAGS) \
125         $(LIBCONFIG_CFLAGS)
126
127 guestfish_LDADD = \
128         $(LIBCONFIG_LIBS) \
129         $(LIBREADLINE) \
130         $(top_builddir)/src/libguestfs.la -lm
131
132 # Make guestfish use the convenience libraries.
133 noinst_LTLIBRARIES = libcmds.la librc_protocol.la
134 guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la
135
136 if HAVE_RPCGEN
137 rc_protocol.c: rc_protocol.x
138         rm -f $@-t $@-t2
139         $(RPCGEN) -c -o $@-t $<
140         sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
141         rm $@-t
142         mv $@-t2 $@
143
144 rc_protocol.h: rc_protocol.x
145         rm -f $@-t
146         $(RPCGEN) -h -o $@-t $<
147         mv $@-t $@
148 endif
149
150 # Script wrappers.
151
152 bin_SCRIPTS = virt-copy-in virt-copy-out virt-tar-in virt-tar-out
153
154 # Manual pages.
155
156 man_MANS = \
157         guestfish.1 \
158         virt-copy-in.1 \
159         virt-copy-out.1 \
160         virt-tar-in.1 \
161         virt-tar-out.1
162 noinst_DATA = \
163         $(top_builddir)/html/guestfish.1.html \
164         $(top_builddir)/html/virt-copy-in.1.html \
165         $(top_builddir)/html/virt-copy-out.1.html \
166         $(top_builddir)/html/virt-tar-in.1.html \
167         $(top_builddir)/html/virt-tar-out.1.html
168
169 guestfish.1 $(top_builddir)/html/guestfish.1.html: stamp-guestfish.pod
170
171 stamp-guestfish.pod: guestfish.pod guestfish-actions.pod guestfish-commands.pod
172         $(top_srcdir)/podwrapper.sh \
173           --man guestfish.1 \
174           --html $(top_builddir)/html/guestfish.1.html \
175           --insert guestfish-actions.pod:@ACTIONS@ \
176           --insert guestfish-commands.pod:@FISH_COMMANDS@ \
177           $<
178         touch $@
179
180 virt-copy-in.1 $(top_builddir)/html/virt-copy-in.1.html: stamp-virt-copy-in.pod
181
182 stamp-virt-copy-in.pod: virt-copy-in.pod
183         $(top_srcdir)/podwrapper.sh \
184           --man virt-copy-in.1 \
185           --html $(top_builddir)/html/virt-copy-in.1.html \
186           $<
187         touch $@
188
189 virt-copy-out.1 $(top_builddir)/html/virt-copy-out.1.html: stamp-virt-copy-out.pod
190
191 stamp-virt-copy-out.pod: virt-copy-out.pod
192         $(top_srcdir)/podwrapper.sh \
193           --man virt-copy-out.1 \
194           --html $(top_builddir)/html/virt-copy-out.1.html \
195           $<
196         touch $@
197
198 virt-tar-in.1 $(top_builddir)/html/virt-tar-in.1.html: stamp-virt-tar-in.pod
199
200 stamp-virt-tar-in.pod: virt-tar-in.pod
201         $(top_srcdir)/podwrapper.sh \
202           --man virt-tar-in.1 \
203           --html $(top_builddir)/html/virt-tar-in.1.html \
204           $<
205         touch $@
206
207 virt-tar-out.1 $(top_builddir)/html/virt-tar-out.1.html: stamp-virt-tar-out.pod
208
209 stamp-virt-tar-out.pod: virt-tar-out.pod
210         $(top_srcdir)/podwrapper.sh \
211           --man virt-tar-out.1 \
212           --html $(top_builddir)/html/virt-tar-out.1.html \
213           $<
214         touch $@
215
216 # libguestfs tools config file.
217
218 toolsconfdir = $(sysconfdir)
219 toolsconf_DATA = libguestfs-tools.conf
220
221 # Bash completion script.
222
223 bashcompletiondir = $(sysconfdir)/bash_completion.d
224 bashcompletion_DATA = guestfish-bash-completion.sh