55b20ba9affad7310d74507a4b3ca6ff24c7b6bf
[libguestfs.git] / 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 ACLOCAL_AMFLAGS = -I m4
19
20 SUBDIRS = src daemon appliance fish po examples images capitests
21
22 if HAVE_OCAML
23 SUBDIRS += ocaml
24 endif
25 if HAVE_PERL
26 SUBDIRS += perl
27 endif
28 if HAVE_PYTHON
29 SUBDIRS += python
30 endif
31 if HAVE_RUBY
32 SUBDIRS += ruby
33 endif
34 if HAVE_JAVA
35 SUBDIRS += java
36 endif
37 if HAVE_HASKELL
38 SUBDIRS += haskell
39 endif
40 if HAVE_INSPECTOR
41 SUBDIRS += inspector
42 endif
43
44 EXTRA_DIST = \
45         config.rpath \
46         guestfs.pod guestfs-actions.pod guestfs-structs.pod \
47         guestfish.pod guestfish-actions.pod \
48         html/pod.css \
49         HACKING TODO \
50         libguestfs.pc libguestfs.pc.in \
51         gitlog-to-changelog \
52         recipes/LICENSE \
53         recipes/README \
54         recipes/*.html \
55         recipes/*.sh \
56         recipes/*.example \
57         html/recipes.css \
58         make-recipes.sh \
59         contrib/README \
60         contrib/febootstrap/install.title \
61         contrib/febootstrap/install.html \
62         contrib/febootstrap/install.sh
63
64 # Manual pages.
65 # guestfs-actions.pod and guestfs-structs are autogenerated.  There is
66 # no include mechanism for POD, so we have to do it by hand.
67
68 man_MANS = guestfs.3 guestfish.1
69
70 guestfs.3: guestfs.pod guestfs-actions.pod guestfs-structs.pod
71         sed \
72           -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
73           -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
74           < $< | \
75         $(POD2MAN) \
76           --section 3 \
77           -c "Virtualization Support" \
78           --name "guestfs" \
79           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
80           > $@
81
82 guestfish.1: guestfish.pod guestfish-actions.pod
83         sed \
84           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
85           < $< | \
86         $(POD2MAN) \
87           --section 1 \
88           -c "Virtualization Support" \
89           --name "guestfish" \
90           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
91           > $@
92
93 noinst_DATA = html/guestfs.3.html html/guestfish.1.html
94
95 html/guestfs.3.html: guestfs.pod guestfs-actions.pod guestfs-structs.pod
96         sed \
97           -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \
98           -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \
99           < $< | \
100         pod2html \
101           --css 'pod.css' \
102           --title "libguestfs API documentation" \
103           --htmldir html \
104           --outfile $@
105
106 html/guestfish.1.html: guestfish.pod guestfish-actions.pod
107         sed \
108           -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
109           < $< | \
110         pod2html \
111           --css 'pod.css' \
112           --title "guestfish, libguestfs filesystem interactive shell" \
113           --htmldir html \
114           --outfile $@
115
116 # Recipes web page.
117 html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcard recipes/*.example) Makefile make-recipes.sh
118         rm -f $@ $@-t
119         sh make-recipes.sh recipes/*.sh > $@-t
120         mv $@-t $@
121
122 HTMLFILES = html/guestfs.3.html html/guestfish.1.html \
123         html/virt-inspector.1.html \
124         html/recipes.html \
125         html/pod.css html/recipes.css
126
127 TEXTFILES = README TODO HACKING
128
129 WEBSITEDIR = $(HOME)/d/redhat/et-website/libguestfs
130
131 website: $(HTMLFILES) $(TEXTFILES)
132         cp $(HTMLFILES) $(WEBSITEDIR)
133         for f in $(TEXTFILES); do cp $$f $(WEBSITEDIR)/$$f.txt; done
134
135 # Generate the ChangeLog automatically from the gitlog.
136
137 dist-hook:
138         ./gitlog-to-changelog > ChangeLog
139         cp ChangeLog $(distdir)/ChangeLog
140
141 # Pkgconfig.
142
143 pkgconfigdir = $(libdir)/pkgconfig
144 pkgconfig_DATA = libguestfs.pc
145
146 # Make clean.
147
148 CLEANFILES = $(fs_DATA) emptydisk pod2htm?.tmp
149
150 clean-local:
151         rm -rf initramfs