maint: use EXIT_SUCCESS and EXIT_FAILURE, not 0 and 1 to exit
[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
26 BUILT_SOURCES = \
27         $(generator_built) \
28         rc_protocol.h \
29         rc_protocol.c
30
31 EXTRA_DIST = \
32         $(BUILT_SOURCES) \
33         rc_protocol.x
34
35 guestfish_SOURCES = \
36         $(generator_built) \
37         alloc.c \
38         destpaths.c \
39         echo.c \
40         edit.c \
41         fish.c \
42         fish.h \
43         glob.c \
44         lcd.c \
45         more.c \
46         rc.c \
47         reopen.c \
48         tilde.c \
49         time.c
50
51 # This convenience library is solely to avoid compiler warnings
52 # in its generated sources.
53 librc_protocol_la_SOURCES = rc_protocol.c
54 librc_protocol_la_CFLAGS = -Wall -Wno-unused
55
56 guestfish_CFLAGS = \
57         -I$(top_srcdir)/src -I$(top_builddir)/src \
58         -I$(top_srcdir)/fish -I$(top_builddir)/fish \
59         -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
60         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
61         $(WARN_CFLAGS) $(WERROR_CFLAGS)
62
63 guestfish_LDADD = $(top_builddir)/src/libguestfs.la $(LIBREADLINE)
64
65 # Make libguestfs use the convenience library.
66 noinst_LTLIBRARIES = librc_protocol.la
67 guestfish_LDADD += librc_protocol.la ../gnulib/lib/libgnu.la
68
69 if HAVE_RPCGEN
70 rc_protocol.c: rc_protocol.x
71         rm -f $@-t $@-t2
72         $(RPCGEN) -c -o $@-t $<
73         sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
74         rm $@-t
75         mv $@-t2 $@
76
77 rc_protocol.h: rc_protocol.x
78         rm -f $@-t
79         $(RPCGEN) -h -o $@-t $<
80         mv $@-t $@
81 endif