2 # Copyright (C) 2009-2011 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 include $(top_srcdir)/subdir-rules.mk
20 ACLOCAL_AMFLAGS = -I m4
22 # Basic source for the library.
23 SUBDIRS = gnulib/lib images generator src examples po
32 # Tests and the test-tool.
33 SUBDIRS += gnulib/tests capitests caution regressions test-tool
39 SUBDIRS += cat df inspector rescue
43 SUBDIRS += perl perl/examples
46 SUBDIRS += ocaml ocaml/examples
49 SUBDIRS += python python/examples
52 SUBDIRS += ruby ruby/examples
64 # Unconditional because nothing is built yet.
67 # virt-resize 2.0 is written in OCaml.
74 # Perl tools and guestmount.
83 # po-docs must come after tools, inspector.
90 BUGS HACKING RELEASE-NOTES ROADMAP TODO \
92 bugs-in-changelog.sh \
102 debian/guestfish.dirs \
103 debian/guestfish.install \
104 debian/guestmount.dirs \
105 debian/guestmount.install \
106 debian/libguestfs-dev.dirs \
107 debian/libguestfs-dev.install \
108 debian/libguestfs-doc.docs \
109 debian/libguestfs-perl.examples \
110 debian/libguestfs-perl.install \
111 debian/libguestfs-tools.dirs \
112 debian/libguestfs-tools.install \
113 debian/libguestfs0.dirs \
114 debian/libguestfs0.install \
115 debian/patches/series \
116 debian/python-guestfs.install \
119 debian/shlibs.local \
123 libguestfs.pc libguestfs.pc.in \
124 libtool-kill-dependency_libs.sh \
125 logo/fish.svg logo/fish.png \
137 html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcard recipes/*.example) Makefile make-recipes.sh
140 sh make-recipes.sh recipes/*.sh > $@-t
144 html/guestfs.3.html \
145 html/guestfs-examples.3.html \
146 html/guestfs-ocaml.3.html \
147 html/guestfs-perl.3.html \
148 html/guestfs-python.3.html \
149 html/guestfs-ruby.3.html \
150 html/guestfish.1.html \
151 html/guestmount.1.html \
152 html/virt-cat.1.html \
153 html/virt-copy-in.1.html \
154 html/virt-copy-out.1.html \
155 html/virt-df.1.html \
156 html/virt-edit.1.html \
157 html/virt-filesystems.1.html \
158 html/virt-inspector.1.html \
159 html/virt-list-filesystems.1.html \
160 html/virt-list-partitions.1.html \
161 html/virt-ls.1.html \
162 html/virt-make-fs.1.html \
163 html/virt-rescue.1.html \
164 html/virt-resize.1.html \
165 html/virt-tar.1.html \
166 html/virt-tar-in.1.html \
167 html/virt-tar-out.1.html \
168 html/virt-win-reg.1.html \
170 html/pod.css html/recipes.css
172 TEXTFILES = BUGS README RELEASE-NOTES ROADMAP TODO
174 WEBSITEDIR = $(HOME)/d/redhat/websites/libguestfs
176 website: $(HTMLFILES) $(TEXTFILES)
177 cp $(HTMLFILES) $(WEBSITEDIR)
178 for f in $(TEXTFILES); do cp $$f $(WEBSITEDIR)/$$f.txt; done
179 cd $(WEBSITEDIR) && \
181 sed -e "s/SUBST_VERSION/$(VERSION)/" \
182 -e "s/SUBST_DATE/$$date/" \
183 < index.html.in > index.html
185 # When doing 'make dist' update a few files automatically.
187 $(top_srcdir)/build-aux/gitlog-to-changelog > ChangeLog
188 cp ChangeLog $(distdir)/ChangeLog
189 $(top_srcdir)/update-bugs.sh > BUGS-t
191 cp BUGS $(distdir)/BUGS
192 git log --pretty="format:%an" | sort -u | \
194 grep -v "Richard Jones" \
197 cp AUTHORS $(distdir)/AUTHORS
199 # Update the list of translatable files in po/POTFILES.in.
202 find $(DIST_SUBDIRS) \
203 -name '*.c' -o -name '*.pl' -o -name '*.pm' | \
204 grep -v '^perl/blib/' | \
205 grep -v '^capitests/' | \
206 grep -v '^daemon/lib/' | \
207 grep -v '^daemon/tests/' | \
208 grep -v '^examples/' | \
209 grep -v '^gnulib/' | \
210 grep -v '^perl/examples/' | \
211 grep -v '/guestfs_protocol.c' | \
212 grep -v '/rc_protocol.c' | \
213 grep -v 'appliance/debian/root' | \
214 grep -v '^po-docs/' | \
216 sed 's,^\./,,' > po/POTFILES.in
220 pkgconfigdir = $(libdir)/pkgconfig
221 pkgconfig_DATA = libguestfs.pc
229 # If you don't want to run all of the tests ('make check') then this
230 # will just run libguestfs-test-tool for a quick check. Note this
231 # is NOT a substitute for proper testing!
234 ./run test-tool/libguestfs-test-tool $(QUICKCHECK_TEST_TOOL_ARGS)
236 # Make binary distribution.
238 BINTMPDIR = /tmp/libguestfs-bin
243 $(MAKE) DESTDIR=$(BINTMPDIR) install
244 -find $(BINTMPDIR) -type d -exec rmdir --ignore-fail-on-non-empty {} \;
245 (cd $(BINTMPDIR) && tar cf - .) | \
246 gzip -c -9 > libguestfs-$(VERSION)-$(DISTRO)-$(host_cpu).tar.gz