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