2 # Copyright (C) 2009 Red Hat Inc.
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.
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.
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.
18 ACLOCAL_AMFLAGS = -I m4
20 SUBDIRS = gnulib/lib hivex src daemon appliance fish po examples images \
21 gnulib/tests capitests regressions test-tool
23 # NB: Must build inspector directory after perl and before ocaml.
24 # We could relax this if we combined the inspector_generator with
25 # the ordinary generator, but that brings other problems.
42 SUBDIRS += ocaml ocaml/examples
58 guestfs.pod guestfs-actions.pod guestfs-structs.pod \
59 guestfish.pod guestfish-actions.pod \
62 libguestfs.pc libguestfs.pc.in \
71 contrib/febootstrap/install.title \
72 contrib/febootstrap/install.html \
73 contrib/febootstrap/install.sh \
78 # guestfs-actions.pod and guestfs-structs are autogenerated. There is
79 # no include mechanism for POD, so we have to do it by hand.
81 man_MANS = guestfs.3 libguestfs.3 guestfish.1
83 guestfs.3: guestfs.pod guestfs-actions.pod guestfs-structs.pod
85 -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
86 -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
90 -c "Virtualization Support" \
92 --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
95 guestfish.1: guestfish.pod guestfish-actions.pod
97 -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
101 -c "Virtualization Support" \
103 --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
106 noinst_DATA = html/guestfs.3.html html/guestfish.1.html
108 html/guestfs.3.html: guestfs.pod guestfs-actions.pod guestfs-structs.pod
111 -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
112 -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
116 --title "libguestfs API documentation" \
120 html/guestfish.1.html: guestfish.pod guestfish-actions.pod
123 -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
127 --title "guestfish, libguestfs filesystem interactive shell" \
132 html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcard recipes/*.example) Makefile make-recipes.sh
135 sh make-recipes.sh recipes/*.sh > $@-t
139 html/guestfs.3.html \
140 html/guestfish.1.html \
141 html/guestmount.1.html \
143 html/hivexget.1.html \
144 html/hivexml.1.html \
145 html/virt-cat.1.html \
146 html/virt-df.1.html \
147 html/virt-edit.1.html \
148 html/virt-inspector.1.html \
149 html/virt-ls.1.html \
150 html/virt-rescue.1.html \
151 html/virt-tar.1.html \
152 html/virt-win-reg.1.html \
154 html/pod.css html/recipes.css
156 TEXTFILES = README TODO HACKING
158 WEBSITEDIR = $(HOME)/d/redhat/websites/libguestfs
160 website: $(HTMLFILES) $(TEXTFILES)
161 cp $(HTMLFILES) $(WEBSITEDIR)
162 for f in $(TEXTFILES); do cp $$f $(WEBSITEDIR)/$$f.txt; done
163 cd $(WEBSITEDIR) && \
165 sed -e "s/SUBST_VERSION/$(VERSION)/" \
166 -e "s/SUBST_DATE/$$date/" \
167 < index.html.in > index.html
169 # Generate the ChangeLog automatically from the gitlog.
172 $(top_srcdir)/build-aux/gitlog-to-changelog > ChangeLog
173 cp ChangeLog $(distdir)/ChangeLog
175 # Update the list of translatable files in po/POTFILES.in.
178 find $(DIST_SUBDIRS) \
179 -name '*.c' -o -name '*.pl' -o -name '*.pm' -o \
180 -name 'virt-cat' -o \
182 -name 'virt-edit' -o \
183 -name 'virt-inspector' -o \
185 -name 'virt-rescue' -o \
186 -name 'virt-tar' -o \
187 -name 'virt-win-reg' | \
188 grep -v '^perl/blib/' | \
189 grep -v '^capitests/' | \
190 grep -v '^daemon/lib/' | \
191 grep -v '^daemon/tests/' | \
192 grep -v '^examples/' | \
193 grep -v '^gnulib/' | \
194 grep -v '^perl/examples/' | \
195 grep -v '/guestfs_protocol.c' | \
196 grep -v '/rc_protocol.c' | \
197 grep -v 'appliance/debian/root' | \
199 sed 's,^\./,,' > po/POTFILES.in
203 pkgconfigdir = $(libdir)/pkgconfig
204 pkgconfig_DATA = libguestfs.pc
208 CLEANFILES = $(fs_DATA) \
212 guestfs.3 guestfish.1