guestfs(3): Refresh documentation for guestfs_create, guestfs_close.
[libguestfs.git] / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009-2011 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 ACLOCAL_AMFLAGS = -I m4
21
22 # Basic source for the library.
23 SUBDIRS = gnulib/lib images generator src examples po
24
25 if ENABLE_DAEMON
26 SUBDIRS += daemon
27 endif
28 if ENABLE_APPLIANCE
29 SUBDIRS += appliance
30 endif
31
32 # Tests and the test-tool.
33 SUBDIRS += gnulib/tests capitests regressions test-tool
34
35 # Guestfish.
36 SUBDIRS += fish
37
38 # virt-tools in C.
39 SUBDIRS += cat df inspector rescue
40
41 # Language bindings.
42 if HAVE_PERL
43 SUBDIRS += perl perl/examples
44 endif
45 if HAVE_OCAML
46 SUBDIRS += ocaml ocaml/examples
47 endif
48 if HAVE_PYTHON
49 SUBDIRS += python python/examples
50 endif
51 if HAVE_RUBY
52 SUBDIRS += ruby ruby/examples
53 endif
54 if HAVE_JAVA
55 SUBDIRS += java
56 endif
57 if HAVE_HASKELL
58 SUBDIRS += haskell
59 endif
60 if HAVE_PHP
61 SUBDIRS += php
62 endif
63
64 # Unconditional because nothing is built yet.
65 SUBDIRS += csharp
66
67 # virt-resize 2.0 is written in OCaml.
68 if HAVE_OCAML
69 if HAVE_OCAML_PCRE
70 SUBDIRS += resize
71 endif
72 endif
73
74 # Perl tools and guestmount.
75 if HAVE_TOOLS
76 SUBDIRS += tools
77 endif
78
79 if HAVE_FUSE
80 SUBDIRS += fuse
81 endif
82
83 # po-docs must come after tools, inspector.
84 if HAVE_PO4A
85 SUBDIRS += po-docs
86 endif
87
88 EXTRA_DIST = \
89         $(generator_built) \
90         html/pod.css \
91         BUGS HACKING RELEASE-NOTES ROADMAP TODO \
92         libguestfs.pc libguestfs.pc.in \
93         recipes/LICENSE \
94         recipes/README \
95         recipes/*.html \
96         recipes/*.sh \
97         recipes/*.example \
98         html/recipes.css \
99         make-recipes.sh \
100         contrib/README \
101         bindtests \
102         .gitignore \
103         m4/.gitignore \
104         libtool-kill-dependency_libs.sh \
105         autogen.sh \
106         bugs-in-changelog.sh \
107         update-bugs.sh \
108         logo/fish.svg logo/fish.png \
109         run
110
111 # Recipes web page.
112 html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcard recipes/*.example) Makefile make-recipes.sh
113         mkdir -p html
114         rm -f $@ $@-t
115         sh make-recipes.sh recipes/*.sh > $@-t
116         mv $@-t $@
117
118 HTMLFILES = \
119         html/guestfs.3.html \
120         html/guestfs-examples.3.html \
121         html/guestfs-ocaml.3.html \
122         html/guestfs-perl.3.html \
123         html/guestfs-python.3.html \
124         html/guestfs-ruby.3.html \
125         html/guestfish.1.html \
126         html/guestmount.1.html \
127         html/virt-cat.1.html \
128         html/virt-copy-in.1.html \
129         html/virt-copy-out.1.html \
130         html/virt-df.1.html \
131         html/virt-edit.1.html \
132         html/virt-filesystems.1.html \
133         html/virt-inspector.1.html \
134         html/virt-list-filesystems.1.html \
135         html/virt-list-partitions.1.html \
136         html/virt-ls.1.html \
137         html/virt-make-fs.1.html \
138         html/virt-rescue.1.html \
139         html/virt-resize.1.html \
140         html/virt-tar.1.html \
141         html/virt-tar-in.1.html \
142         html/virt-tar-out.1.html \
143         html/virt-win-reg.1.html \
144         html/recipes.html \
145         html/pod.css html/recipes.css
146
147 TEXTFILES = BUGS README RELEASE-NOTES ROADMAP TODO
148
149 WEBSITEDIR = $(HOME)/d/redhat/websites/libguestfs
150
151 website: $(HTMLFILES) $(TEXTFILES)
152         cp $(HTMLFILES) $(WEBSITEDIR)
153         for f in $(TEXTFILES); do cp $$f $(WEBSITEDIR)/$$f.txt; done
154         cd $(WEBSITEDIR) && \
155         date=`date +%F`; \
156         sed -e "s/SUBST_VERSION/$(VERSION)/" \
157             -e "s/SUBST_DATE/$$date/" \
158         < index.html.in > index.html
159
160 # When doing 'make dist' update a few files automatically.
161 dist-hook:
162         $(top_srcdir)/build-aux/gitlog-to-changelog > ChangeLog
163         cp ChangeLog $(distdir)/ChangeLog
164         $(top_srcdir)/update-bugs.sh > BUGS-t
165         mv BUGS-t BUGS
166         cp BUGS $(distdir)/BUGS
167         git log --pretty="format:%an" | sort -u | \
168                 grep -v rjones | \
169                 grep -v "Richard Jones" \
170                 > AUTHORS-t
171         mv AUTHORS-t AUTHORS
172         cp AUTHORS $(distdir)/AUTHORS
173
174 # Update the list of translatable files in po/POTFILES.in.
175 all-local:
176         cd $(srcdir); \
177         find $(DIST_SUBDIRS) \
178             -name '*.c' -o -name '*.pl' -o -name '*.pm' | \
179         grep -v '^perl/blib/' | \
180         grep -v '^capitests/' | \
181         grep -v '^daemon/lib/' | \
182         grep -v '^daemon/tests/' | \
183         grep -v '^examples/' | \
184         grep -v '^gnulib/' | \
185         grep -v '^perl/examples/' | \
186         grep -v '/guestfs_protocol.c' | \
187         grep -v '/rc_protocol.c' | \
188         grep -v 'appliance/debian/root' | \
189         grep -v '^po-docs/' | \
190         LC_ALL=C sort | \
191         sed 's,^\./,,' > po/POTFILES.in
192
193 # Pkgconfig.
194
195 pkgconfigdir = $(libdir)/pkgconfig
196 pkgconfig_DATA = libguestfs.pc
197
198 # Make clean.
199
200 CLEANFILES = \
201         pod2htm?.tmp \
202         html/*.html
203
204 # If you don't want to run all of the tests ('make check') then this
205 # will just run libguestfs-test-tool for a quick check.  Note this
206 # is NOT a substitute for proper testing!
207
208 quickcheck:
209         ./run test-tool/libguestfs-test-tool
210
211 # Make binary distribution.
212
213 BINTMPDIR = /tmp/libguestfs-bin
214 bindist:
215         rm -rf $(BINTMPDIR)
216         mkdir $(BINTMPDIR)
217         $(MAKE)
218         $(MAKE) DESTDIR=$(BINTMPDIR) install
219         -find $(BINTMPDIR) -type d -exec rmdir --ignore-fail-on-non-empty {} \;
220         (cd $(BINTMPDIR) && tar cf - .) | \
221           gzip -c -9 > libguestfs-$(VERSION)-$(DISTRO)-$(host_cpu).tar.gz