Update PO files.
[libguestfs.git] / fish / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009 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
27 BUILT_SOURCES = \
28         $(generator_built) \
29         rc_protocol.h \
30         rc_protocol.c
31
32 EXTRA_DIST = \
33         $(BUILT_SOURCES) \
34         rc_protocol.x \
35         guestfish.pod
36
37 guestfish_SOURCES = \
38         $(generator_built) \
39         alloc.c \
40         destpaths.c \
41         echo.c \
42         edit.c \
43         fish.c \
44         fish.h \
45         glob.c \
46         lcd.c \
47         man.c \
48         more.c \
49         prep.c \
50         rc.c \
51         reopen.c \
52         tilde.c \
53         time.c
54
55 # This convenience library is solely to avoid compiler warnings
56 # in its generated sources.
57 librc_protocol_la_SOURCES = rc_protocol.c
58 librc_protocol_la_CFLAGS = -Wall -Wno-unused
59
60 guestfish_CFLAGS = \
61         -I$(top_srcdir)/src -I$(top_builddir)/src \
62         -I$(top_srcdir)/fish -I$(top_builddir)/fish \
63         -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
64         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
65         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
66         $(WARN_CFLAGS) $(WERROR_CFLAGS)
67
68 guestfish_LDADD = $(top_builddir)/src/libguestfs.la $(LIBREADLINE)
69
70 # Make libguestfs use the convenience library.
71 noinst_LTLIBRARIES = librc_protocol.la
72 guestfish_LDADD += librc_protocol.la ../gnulib/lib/libgnu.la
73
74 if HAVE_RPCGEN
75 rc_protocol.c: rc_protocol.x
76         rm -f $@-t $@-t2
77         $(RPCGEN) -c -o $@-t $<
78         sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
79         rm $@-t
80         mv $@-t2 $@
81
82 rc_protocol.h: rc_protocol.x
83         rm -f $@-t
84         $(RPCGEN) -h -o $@-t $<
85         mv $@-t $@
86 endif
87
88 # Manual page.
89 # guestfish-actions.pod is autogenerated.  There is no include
90 # mechanism for POD, so we have to do it by hand.
91
92 man_MANS = guestfish.1
93
94 guestfish.1: guestfish.pod guestfish-actions.pod
95         sed \
96           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
97           < $< | \
98         $(POD2MAN) \
99           --section 1 \
100           -c "Virtualization Support" \
101           --name "guestfish" \
102           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
103           > $@