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