Add guestfs.pod and guestfish.pod to EXTRA_DIST.
[libguestfs.git] / src / 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 include $(top_srcdir)/subdir-rules.mk
19
20 generator_built = \
21         guestfs_protocol.x \
22         guestfs-structs.h \
23         guestfs-actions.h \
24         guestfs-internal-actions.h \
25         guestfs-actions.c \
26         guestfs-bindtests.c \
27         guestfs-actions.pod \
28         guestfs-availability.pod \
29         guestfs-structs.pod \
30         libguestfs.syms
31
32 $(generator_built): stamp-generator
33
34 BUILT_SOURCES = \
35   $(generator_built) \
36   guestfs_protocol.c \
37   guestfs_protocol.h
38
39 EXTRA_DIST = \
40         $(BUILT_SOURCES) \
41         MAX_PROC_NR \
42         stamp-generator \
43         generator.ml \
44         libguestfs.3 \
45         guestfs.pod
46
47 # Rerun the generator if it has changed.
48 # Git removes empty directories, so in cases where the
49 # generator is creating the sole file in a directory, we
50 # have to create the directory first.
51 noinst_DATA = stamp-generator
52
53 stamp-generator: generator.ml
54         mkdir -p $(top_srcdir)/perl/lib/Sys
55         mkdir -p $(top_srcdir)/ruby/ext/guestfs
56         mkdir -p $(top_srcdir)/java/com/redhat/et/libguestfs
57         mkdir -p $(top_srcdir)/csharp
58         cd $(top_srcdir) && ocaml -warn-error A src/generator.ml
59
60 include_HEADERS = guestfs.h guestfs-actions.h guestfs-structs.h
61
62 lib_LTLIBRARIES = libguestfs.la
63
64 # This convenience library is solely to avoid compiler warnings
65 # in its generated sources.
66 libprotocol_la_SOURCES = \
67   guestfs_protocol.c \
68   guestfs_protocol.h
69
70 libprotocol_la_CFLAGS =
71
72 # From the libtool info file, with comments:
73 #
74 # |  1. Start with version information of `0:0:0' for each libtool library.
75 # |
76 # |  2. Update the version information only immediately before a public
77 # |     release of your software.  More frequent updates are unnecessary,
78 # |     and only guarantee that the current interface number gets larger
79 # |     faster.
80 # |
81 # |  3. If the library source code has changed at all since the last
82 # |     update, then increment REVISION (`C:R:A' becomes `C:r+1:A').
83 #
84 # [So it seems like we should always update the middle 'R' field
85 # for any release.]
86 #
87 # |  4. If any interfaces have been added, removed, or changed since the
88 # |     last update, increment CURRENT, and set REVISION to 0.
89 # |
90 # |  5. If any interfaces have been added since the last public release,
91 # |     then increment AGE.
92 #
93 # [These two rules seem to mean that if any change is made to the
94 # generator, we should increment C and A, and set R to 0, so:
95 # C+1:0:A+1.]
96 #
97 # |  6. If any interfaces have been removed since the last public release,
98 # |     then set AGE to 0.
99 #
100 # [Our ABI guarantee means we won't remove interfaces except in
101 # very exceptional circumstances.]
102 #
103 # The maximum proc number (see guestfs_protocol.x:guestfs_procedure) is
104 # a mostly accurate stand-in for C & A in rules 5 & 6, so we use that.  It
105 # is always incremented when we add a new appliance interface, and easy to
106 # calculate.
107 #
108 # The middle number is hard to increment-and-reset as described in rules
109 # 4 & 5, so for the moment it is always set to 0.
110 #
111 # Note that this scheme means the real library version will always be
112 # 'libguestfs.so.0.$(MAX_PROC_NR).0'.
113 libguestfs_la_LDFLAGS = -version-info $(MAX_PROC_NR):0:$(MAX_PROC_NR)
114
115 libguestfs_la_LDFLAGS += $(VERSION_SCRIPT_FLAGS)libguestfs.syms
116
117 libguestfs_la_SOURCES = \
118         guestfs.c \
119         guestfs.h \
120         guestfs-actions.h \
121         guestfs-actions.c \
122         guestfs-bindtests.c \
123         guestfs-internal.h \
124         guestfs_protocol.h \
125         gettext.h \
126         libguestfs.syms
127
128 libguestfs_la_LIBADD = $(LTLIBTHREAD)
129
130 # Make libguestfs include the convenience library.
131 noinst_LTLIBRARIES = libprotocol.la
132 libguestfs_la_LIBADD += libprotocol.la
133
134 libguestfs_la_CFLAGS = \
135   -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
136   $(WARN_CFLAGS) $(WERROR_CFLAGS)
137
138 libguestfs_la_CPPFLAGS = -I$(top_srcdir)/gnulib/lib
139
140 if HAVE_RPCGEN
141 guestfs_protocol.c: guestfs_protocol.x
142         rm -f $@-t $@-t2
143         $(RPCGEN) -c -o $@-t $<
144         sed 's,\.\./\.\./src/,,' < $@-t > $@-t2
145         rm $@-t
146         mv $@-t2 $@
147
148 guestfs_protocol.h: guestfs_protocol.x
149         rm -f $@-t
150         $(RPCGEN) -h -o $@-t $<
151         mv $@-t $@
152 endif
153
154 # Manual page.
155 # guestfs-actions.pod, guestfs-availability.pod and guestfs-structs
156 # are autogenerated.  There is no include mechanism for POD, so we
157 # have to do it by hand.
158
159 man_MANS = guestfs.3 libguestfs.3
160
161 guestfs.3: guestfs.pod \
162                 guestfs-actions.pod \
163                 guestfs-availability.pod \
164                 guestfs-structs.pod
165         sed \
166           -e '/@ACTIONS@/rguestfs-actions.pod' \
167           -e 's/@ACTIONS@//' \
168           -e '/@AVAILABILITY@/rguestfs-availability.pod' \
169           -e 's/@AVAILABILITY@//' \
170           -e '/@STRUCTS@/rguestfs-structs.pod' \
171           -e 's/@STRUCTS@//' \
172           < $< | \
173         $(POD2MAN) \
174           --section 3 \
175           -c "Virtualization Support" \
176           --name "guestfs" \
177           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
178           > $@