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