fish: Add fish-cmds.h to generator_built.
[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         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
51 # These source files (all related to option parsing) are shared
52 # between guestfish and guestmount.  Keep a convenient list here just
53 # so we know which ones are shared.  These files must not include
54 # other guestfish files.
55 SHARED_SOURCE_FILES = \
56         inspect.c \
57         keys.c \
58         options.h \
59         options.c \
60         virt.c
61
62 guestfish_SOURCES = \
63         $(generator_built) \
64         $(SHARED_SOURCE_FILES) \
65         alloc.c \
66         cmds_gperf.h \
67         copy.c \
68         destpaths.c \
69         echo.c \
70         edit.c \
71         fish.c \
72         fish.h \
73         glob.c \
74         help.c \
75         hexedit.c \
76         lcd.c \
77         man.c \
78         more.c \
79         prep.c \
80         prep_disk.c \
81         prep_part.c \
82         prep_fs.c \
83         prep_lv.c \
84         prep_boot.c \
85         progress.c \
86         rc.c \
87         reopen.c \
88         rmsd.h \
89         supported.c \
90         tilde.c \
91         time.c
92
93 # This convenience library is solely to compile its generated sources with
94 # custom flags.
95 librc_protocol_la_SOURCES = rc_protocol.c rc_protocol.h
96 librc_protocol_la_CFLAGS = -Wall -Wno-unused -fno-strict-aliasing
97
98 # Build the command lookup perfect hash code.  The generated code has
99 # lots of warnings so we must compile it in a separate mini-library.
100 libcmds_la_SOURCES = cmds_gperf.c
101 libcmds_la_CFLAGS =
102
103 cmds_gperf.c: cmds_gperf.gperf
104         rm -f $@
105         $(GPERF) -t $< > $@-t
106         mv $@-t $@
107
108 guestfish_CFLAGS = \
109         -I$(top_srcdir)/src -I$(top_builddir)/src \
110         -I$(top_srcdir)/fish -I$(top_builddir)/fish \
111         -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
112         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
113         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
114         $(WARN_CFLAGS) $(WERROR_CFLAGS)
115
116 guestfish_LDADD = \
117         $(top_builddir)/src/libguestfs.la $(LIBREADLINE) -lm
118
119 # Make guestfish use the convenience libraries.
120 noinst_LTLIBRARIES = libcmds.la librc_protocol.la
121 guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la
122
123 if HAVE_RPCGEN
124 rc_protocol.c: rc_protocol.x
125         rm -f $@-t $@-t2
126         $(RPCGEN) -c -o $@-t $<
127         sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
128         rm $@-t
129         mv $@-t2 $@
130
131 rc_protocol.h: rc_protocol.x
132         rm -f $@-t
133         $(RPCGEN) -h -o $@-t $<
134         mv $@-t $@
135 endif
136
137 # Manual page.
138
139 man_MANS = guestfish.1
140 noinst_DATA = $(top_builddir)/html/guestfish.1.html
141
142 guestfish.1 $(top_builddir)/html/guestfish.1.html: stamp-guestfish.pod
143
144 stamp-guestfish.pod: guestfish.pod guestfish-actions.pod guestfish-commands.pod
145         $(top_srcdir)/podwrapper.sh \
146           --man guestfish.1 \
147           --html $(top_builddir)/html/guestfish.1.html \
148           --insert guestfish-actions.pod:@ACTIONS@ \
149           --insert guestfish-commands.pod:@FISH_COMMANDS@ \
150           $<
151         touch $@
152
153 # Bash completion script.
154
155 bashcompletiondir = $(sysconfdir)/bash_completion.d
156 bashcompletion_DATA = guestfish-bash-completion.sh