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