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