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