2 # Copyright (C) 2009 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
24 guestfs-internal-actions.h \
28 guestfs-availability.pod \
32 $(generator_built): stamp-generator
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
53 stamp-generator: generator.ml ../images/test.iso
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
61 make -C ../images test.iso
63 include_HEADERS = guestfs.h guestfs-actions.h guestfs-structs.h
65 lib_LTLIBRARIES = libguestfs.la
67 # This convenience library is solely to avoid compiler warnings
68 # in its generated sources.
69 libprotocol_la_SOURCES = \
73 libprotocol_la_CFLAGS =
75 # From the libtool info file, with comments:
77 # | 1. Start with version information of `0:0:0' for each libtool library.
79 # | 2. Update the version information only immediately before a public
80 # | release of your software. More frequent updates are unnecessary,
81 # | and only guarantee that the current interface number gets larger
84 # | 3. If the library source code has changed at all since the last
85 # | update, then increment REVISION (`C:R:A' becomes `C:r+1:A').
87 # [So it seems like we should always update the middle 'R' field
90 # | 4. If any interfaces have been added, removed, or changed since the
91 # | last update, increment CURRENT, and set REVISION to 0.
93 # | 5. If any interfaces have been added since the last public release,
94 # | then increment AGE.
96 # [These two rules seem to mean that if any change is made to the
97 # generator, we should increment C and A, and set R to 0, so:
100 # | 6. If any interfaces have been removed since the last public release,
101 # | then set AGE to 0.
103 # [Our ABI guarantee means we won't remove interfaces except in
104 # very exceptional circumstances.]
106 # The maximum proc number (see guestfs_protocol.x:guestfs_procedure) is
107 # a mostly accurate stand-in for C & A in rules 5 & 6, so we use that. It
108 # is always incremented when we add a new appliance interface, and easy to
111 # The middle number is hard to increment-and-reset as described in rules
112 # 4 & 5, so for the moment it is always set to 0.
114 # Note that this scheme means the real library version will always be
115 # 'libguestfs.so.0.$(MAX_PROC_NR).0'.
116 libguestfs_la_LDFLAGS = -version-info $(MAX_PROC_NR):0:$(MAX_PROC_NR)
118 libguestfs_la_LDFLAGS += $(VERSION_SCRIPT_FLAGS)libguestfs.syms
120 libguestfs_la_SOURCES = \
125 guestfs-bindtests.c \
131 libguestfs_la_LIBADD = $(LTLIBTHREAD) ../gnulib/lib/libgnu.la
133 # Make libguestfs include the convenience library.
134 noinst_LTLIBRARIES = libprotocol.la
135 libguestfs_la_LIBADD += libprotocol.la
137 libguestfs_la_CFLAGS = \
138 -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' \
139 $(WARN_CFLAGS) $(WERROR_CFLAGS)
141 libguestfs_la_CPPFLAGS = -I$(top_srcdir)/gnulib/lib
144 guestfs_protocol.c: guestfs_protocol.x
146 $(RPCGEN) -c -o $@-t $<
147 sed 's,\.\./\.\./src/,,' < $@-t > $@-t2
151 guestfs_protocol.h: guestfs_protocol.x
153 $(RPCGEN) -h -o $@-t $<
158 # guestfs-actions.pod, guestfs-availability.pod and guestfs-structs
159 # are autogenerated. There is no include mechanism for POD, so we
160 # have to do it by hand.
162 man_MANS = guestfs.3 libguestfs.3
164 guestfs.3: guestfs.pod \
165 guestfs-actions.pod \
166 guestfs-availability.pod \
169 -e '/@ACTIONS@/rguestfs-actions.pod' \
171 -e '/@AVAILABILITY@/rguestfs-availability.pod' \
172 -e 's/@AVAILABILITY@//' \
173 -e '/@STRUCTS@/rguestfs-structs.pod' \
178 -c "Virtualization Support" \
180 --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
183 # Check user doesn't try to do 'make all' or 'make check' as root.
184 # https://www.redhat.com/archives/libguestfs/2010-April/msg00098.html
187 check-local: checkroot
189 @if [ "`id -u`" = 0 ]; then \
190 echo "*** Error: Don't run 'make' or 'make check' as root."; \