61b6346ecf043a89c885e4af22cad79f36b0c155
[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 bin_PROGRAMS = guestfish
21
22 generator_built = \
23         cmds.c \
24         cmds_gperf.gperf \
25         completion.c \
26         guestfish-actions.pod \
27         guestfish-commands.pod \
28         prepopts.h \
29         prepopts.c
30
31 BUILT_SOURCES = \
32         $(generator_built) \
33         cmds_gperf.c \
34         rc_protocol.h \
35         rc_protocol.c
36
37 EXTRA_DIST = \
38         $(BUILT_SOURCES) \
39         rc_protocol.x \
40         guestfish.pod \
41         guestfish-bash-completion.sh
42
43 # These source files (all related to option parsing) are shared
44 # between guestfish and guestmount.  Keep a convenient list here just
45 # so we know which ones are shared.  These files must not include
46 # other guestfish files.
47 SHARED_SOURCE_FILES = \
48         inspect.c \
49         options.h \
50         options.c \
51         virt.c
52
53 guestfish_SOURCES = \
54         $(generator_built) \
55         $(SHARED_SOURCE_FILES) \
56         alloc.c \
57         cmds_gperf.h \
58         copy.c \
59         destpaths.c \
60         echo.c \
61         edit.c \
62         fish.c \
63         fish.h \
64         glob.c \
65         help.c \
66         hexedit.c \
67         lcd.c \
68         man.c \
69         more.c \
70         prep.c \
71         prep_disk.c \
72         prep_part.c \
73         prep_fs.c \
74         prep_lv.c \
75         prep_boot.c \
76         progress.c \
77         rc.c \
78         reopen.c \
79         rmsd.h \
80         supported.c \
81         tilde.c \
82         time.c
83
84 # This convenience library is solely to avoid compiler warnings
85 # in its generated sources.
86 librc_protocol_la_SOURCES = rc_protocol.c
87 librc_protocol_la_CFLAGS = -Wall -Wno-unused
88
89 # Build the command lookup perfect hash code.  The generated code has
90 # lots of warnings so we must compile it in a separate mini-library.
91 libcmds_la_SOURCES = cmds_gperf.c
92 libcmds_la_CFLAGS =
93
94 cmds_gperf.c: cmds_gperf.gperf
95         rm -f $@
96         $(GPERF) -t $< > $@-t
97         mv $@-t $@
98
99 guestfish_CFLAGS = \
100         -I$(top_srcdir)/src -I$(top_builddir)/src \
101         -I$(top_srcdir)/fish -I$(top_builddir)/fish \
102         -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
103         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
104         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
105         $(LIBVIRT_CFLAGS) $(LIBXML2_CFLAGS) \
106         $(WARN_CFLAGS) $(WERROR_CFLAGS)
107
108 guestfish_LDADD = \
109         $(LIBVIRT_LIBS) $(LIBXML2_LIBS) \
110         $(top_builddir)/src/libguestfs.la $(LIBREADLINE) -lm
111
112 # Make guestfish use the convenience libraries.
113 noinst_LTLIBRARIES = libcmds.la librc_protocol.la
114 guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la
115
116 if HAVE_RPCGEN
117 rc_protocol.c: rc_protocol.x
118         rm -f $@-t $@-t2
119         $(RPCGEN) -c -o $@-t $<
120         sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
121         rm $@-t
122         mv $@-t2 $@
123
124 rc_protocol.h: rc_protocol.x
125         rm -f $@-t
126         $(RPCGEN) -h -o $@-t $<
127         mv $@-t $@
128 endif
129
130 # Build a partly-static library (for the binary distribution).
131
132 guestfish.static$(EXEEXT): $(guestfish_OBJECTS) $(guestfish_DEPENDENCIES)
133         $(top_srcdir)/relink-static.sh \
134         $(guestfish_LINK) $(guestfish_OBJECTS) -static $(guestfish_LDADD) $(guestfish_LIBS) -ltinfo -lpcre -lhivex -lmagic -lz -lm
135
136 # Manual page.
137 # guestfish-actions.pod and guestfish-commands.pod are autogenerated.
138 # There is no include mechanism for POD, so we have to do it by hand.
139
140 man_MANS = guestfish.1
141
142 guestfish.1: guestfish.pod guestfish-actions.pod guestfish-commands.pod
143         sed \
144           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
145           -e '/@FISH_COMMANDS@/rguestfish-commands.pod' -e 's/@FISH_COMMANDS@//' \
146           < $< | \
147         $(POD2MAN) \
148           --section 1 \
149           -c "Virtualization Support" \
150           --name "guestfish" \
151           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
152           > $@
153
154 # Bash completion script.
155
156 bashcompletiondir = $(sysconfdir)/bash_completion.d
157 bashcompletion_DATA = guestfish-bash-completion.sh