daemon: debug segv correct use of dereferencing NULL.
[libguestfs.git] / ruby / Makefile.am
1 # libguestfs Ruby bindings
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 include $(top_srcdir)/subdir-rules.mk
19
20 generator_built = \
21         ext/guestfs/_guestfs.c \
22         bindtests.rb
23
24 EXTRA_DIST = \
25         $(generator_built) \
26         Rakefile.in \
27         README.rdoc \
28         doc/site/index.html \
29         ext/guestfs/extconf.rb \
30         lib/guestfs.rb \
31         run-bindtests \
32         run-ruby-tests \
33         tests/tc_*.rb
34
35 CLEANFILES = \
36         lib/*~ \
37         tests/*~ \
38         ext/guestfs/*~ \
39         ext/guestfs/extconf.h \
40         ext/guestfs/_guestfs.o \
41         ext/guestfs/_guestfs.so \
42         ext/guestfs/mkmf.log \
43         ext/guestfs/Makefile
44
45 if HAVE_RUBY
46
47 TESTS = run-bindtests run-ruby-tests
48
49 TESTS_ENVIRONMENT = \
50         LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
51         LIBGUESTFS_PATH=$(top_builddir)/appliance \
52         TMPDIR=$(top_builddir) \
53         RUBY=$(RUBY)
54
55 all: $(generator_built)
56         $(RAKE) build
57         $(RAKE) rdoc
58
59 RUBY_SITELIB := $(shell $(RUBY) -rrbconfig -e "puts Config::CONFIG['sitelibdir']")
60 RUBY_SITEARCH := $(shell $(RUBY) -rrbconfig -e "puts Config::CONFIG['sitearchdir']")
61
62 install:
63         $(MKDIR_P) $(DESTDIR)$(RUBY_SITELIB)
64         $(MKDIR_P) $(DESTDIR)$(RUBY_SITEARCH)
65         $(INSTALL) -p -m 0644 $(srcdir)/lib/guestfs.rb $(DESTDIR)$(RUBY_SITELIB)
66         $(INSTALL) -p -m 0755 $(builddir)/ext/guestfs/_guestfs.so $(DESTDIR)$(RUBY_SITEARCH)
67
68 endif