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