Remove ability to build static distribution.
[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 CLEANFILES = stamp-guestfish.pod
21
22 bin_PROGRAMS = guestfish
23
24 generator_built = \
25         cmds.c \
26         cmds_gperf.gperf \
27         completion.c \
28         guestfish-actions.pod \
29         guestfish-commands.pod \
30         prepopts.h \
31         prepopts.c
32
33 BUILT_SOURCES = \
34         $(generator_built) \
35         cmds_gperf.c \
36         rc_protocol.h \
37         rc_protocol.c
38
39 EXTRA_DIST = \
40         $(BUILT_SOURCES) \
41         rc_protocol.x \
42         guestfish.pod \
43         guestfish-bash-completion.sh
44
45 # These source files (all related to option parsing) are shared
46 # between guestfish and guestmount.  Keep a convenient list here just
47 # so we know which ones are shared.  These files must not include
48 # other guestfish files.
49 SHARED_SOURCE_FILES = \
50         inspect.c \
51         keys.c \
52         options.h \
53         options.c \
54         virt.c
55
56 guestfish_SOURCES = \
57         $(generator_built) \
58         $(SHARED_SOURCE_FILES) \
59         alloc.c \
60         cmds_gperf.h \
61         copy.c \
62         destpaths.c \
63         echo.c \
64         edit.c \
65         fish.c \
66         fish.h \
67         glob.c \
68         help.c \
69         hexedit.c \
70         lcd.c \
71         man.c \
72         more.c \
73         prep.c \
74         prep_disk.c \
75         prep_part.c \
76         prep_fs.c \
77         prep_lv.c \
78         prep_boot.c \
79         progress.c \
80         rc.c \
81         reopen.c \
82         rmsd.h \
83         supported.c \
84         tilde.c \
85         time.c
86
87 # This convenience library is solely to avoid compiler warnings
88 # in its generated sources.
89 librc_protocol_la_SOURCES = rc_protocol.c
90 librc_protocol_la_CFLAGS = -Wall -Wno-unused
91
92 # Build the command lookup perfect hash code.  The generated code has
93 # lots of warnings so we must compile it in a separate mini-library.
94 libcmds_la_SOURCES = cmds_gperf.c
95 libcmds_la_CFLAGS =
96
97 cmds_gperf.c: cmds_gperf.gperf
98         rm -f $@
99         $(GPERF) -t $< > $@-t
100         mv $@-t $@
101
102 guestfish_CFLAGS = \
103         -I$(top_srcdir)/src -I$(top_builddir)/src \
104         -I$(top_srcdir)/fish -I$(top_builddir)/fish \
105         -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
106         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
107         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
108         $(WARN_CFLAGS) $(WERROR_CFLAGS)
109
110 guestfish_LDADD = \
111         $(top_builddir)/src/libguestfs.la $(LIBREADLINE) -lm
112
113 # Make guestfish use the convenience libraries.
114 noinst_LTLIBRARIES = libcmds.la librc_protocol.la
115 guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la
116
117 if HAVE_RPCGEN
118 rc_protocol.c: rc_protocol.x
119         rm -f $@-t $@-t2
120         $(RPCGEN) -c -o $@-t $<
121         sed 's,\.\./\.\./fish/,,' < $@-t > $@-t2
122         rm $@-t
123         mv $@-t2 $@
124
125 rc_protocol.h: rc_protocol.x
126         rm -f $@-t
127         $(RPCGEN) -h -o $@-t $<
128         mv $@-t $@
129 endif
130
131 # Manual page.
132
133 man_MANS = guestfish.1
134 noinst_DATA = $(top_builddir)/html/guestfish.1.html
135
136 guestfish.1 $(top_builddir)/html/guestfish.1.html: stamp-guestfish.pod
137
138 stamp-guestfish.pod: guestfish.pod guestfish-actions.pod guestfish-commands.pod
139         $(top_srcdir)/podwrapper.sh \
140           --man guestfish.1 \
141           --html $(top_builddir)/html/guestfish.1.html \
142           --insert guestfish-actions.pod:@ACTIONS@ \
143           --insert guestfish-commands.pod:@FISH_COMMANDS@ \
144           $<
145         touch $@
146
147 # Bash completion script.
148
149 bashcompletiondir = $(sysconfdir)/bash_completion.d
150 bashcompletion_DATA = guestfish-bash-completion.sh