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