Add libguestfs-test-tool.
[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 EXTRA_DIST = \
19         guestfs_protocol.x \
20         MAX_PROC_NR \
21         stamp-generator \
22         generator.ml
23
24 # Rerun the generator if it has changed.
25 # Git removes empty directories, so in cases where the
26 # generator is creating the sole file in a directory, we
27 # have to create the directory first.
28 noinst_DATA = stamp-generator
29
30 stamp-generator: generator.ml
31         mkdir -p $(top_srcdir)/perl/lib/Sys
32         mkdir -p $(top_srcdir)/ruby/ext/guestfs
33         mkdir -p $(top_srcdir)/java/com/redhat/et/libguestfs
34         cd $(top_srcdir) && ocaml -warn-error A src/generator.ml
35
36 guestfs_protocol.x: stamp-generator
37
38 include_HEADERS = guestfs.h guestfs-actions.h guestfs-structs.h
39
40 lib_LTLIBRARIES = libguestfs.la
41
42 BUILT_SOURCES = \
43   guestfs_protocol.x \
44   guestfs_protocol.c \
45   guestfs_protocol.h \
46   guestfs-structs.h \
47   guestfs-actions.h \
48   guestfs-actions.c \
49   guestfs-bindtests.c
50
51 $(BUILT_SOURCES): stamp-generator
52
53 CLEANFILES = guestfs_protocol.c guestfs_protocol.h
54
55 # From the libtool info file, with comments:
56 #
57 # |  1. Start with version information of `0:0:0' for each libtool library.
58 # |
59 # |  2. Update the version information only immediately before a public
60 # |     release of your software.  More frequent updates are unnecessary,
61 # |     and only guarantee that the current interface number gets larger
62 # |     faster.
63 # |
64 # |  3. If the library source code has changed at all since the last
65 # |     update, then increment REVISION (`C:R:A' becomes `C:r+1:A').
66 #
67 # [So it seems like we should always update the middle 'R' field
68 # for any release.]
69 #
70 # |  4. If any interfaces have been added, removed, or changed since the
71 # |     last update, increment CURRENT, and set REVISION to 0.
72 # |
73 # |  5. If any interfaces have been added since the last public release,
74 # |     then increment AGE.
75 #
76 # [These two rules seem to mean that if any change is made to the
77 # generator, we should increment C and A, and set R to 0, so:
78 # C+1:0:A+1.]
79 #
80 # |  6. If any interfaces have been removed since the last public release,
81 # |     then set AGE to 0.
82 #
83 # [Our ABI guarantee means we won't remove interfaces except in
84 # very exceptional circumstances.]
85 #
86 # The maximum proc number (see guestfs_protocol.x:guestfs_procedure) is
87 # a mostly accurate stand-in for C & A in rules 5 & 6, so we use that.  It
88 # is always incremented when we add a new appliance interface, and easy to
89 # calculate.
90 #
91 # The middle number is hard to increment-and-reset as described in rules
92 # 4 & 5, so for the moment it is always set to 0.
93 #
94 # Note that this scheme means the real library version will always be
95 # 'libguestfs.so.0.$(MAX_PROC_NR).0'.
96
97 libguestfs_la_LDFLAGS = -version-info $(MAX_PROC_NR):0:$(MAX_PROC_NR)
98 libguestfs_la_SOURCES = \
99         guestfs.c \
100         guestfs.h \
101         guestfs_protocol.c \
102         guestfs_protocol.h \
103         guestfs-actions.h \
104         guestfs-actions.c \
105         guestfs-bindtests.c \
106         gettext.h
107
108 libguestfs_la_CFLAGS = -Wall -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"'
109
110 if HAVE_RPCGEN
111 guestfs_protocol.c: guestfs_protocol.x
112         rm -f $@-t $@-t2
113         $(RPCGEN) -c -o $@-t $<
114         sed 's,\.\./\.\./src/,,' < $@-t > $@-t2
115         rm $@-t
116         mv $@-t2 $@
117
118 guestfs_protocol.h: guestfs_protocol.x
119         rm -f $@-t
120         $(RPCGEN) -h -o $@-t $<
121         mv $@-t $@
122 endif