I finally finished the first version of the patch (attached) -- Fidelis Assis fideli...
[rrdtool.git] / bindings / Makefile.am
1 .PHONY: python ruby lua
2
3 if BUILD_TCL
4 SUB_tcl = tcl
5 endif
6
7 SUBDIRS = $(SUB_tcl)
8
9 # the following files are not mentioned in any other Makefile
10 EXTRA_DIST = perl-piped/MANIFEST perl-piped/README perl-piped/Makefile.PL perl-piped/RRDp.pm perl-piped/t/base.t \
11              perl-shared/ntmake.pl perl-shared/MANIFEST perl-shared/README perl-shared/Makefile.PL perl-shared/RRDs.pm  perl-shared/RRDs.xs perl-shared/t/base.t \
12              ruby/CHANGES     ruby/README      ruby/extconf.rb  ruby/main.c      ruby/test.rb \
13              python/ACKNOWLEDGEMENT python/AUTHORS python/COPYING python/README python/rrdtoolmodule.c python/setup.py \
14              lua/README lua/test.lua lua/rrdlua.c lua/Makefile.lua lua/rrdlua.pod 
15
16
17 # add the following to the all target
18 all-local:  @COMP_PERL@ @COMP_RUBY@ @COMP_PYTHON@ @COMP_LUA@
19
20 install-data-local:
21         test -f perl-piped/Makefile && cd perl-piped && $(MAKE) install || true
22         test -f perl-shared/Makefile && cd perl-shared && $(MAKE) install || true
23         test -f ruby/Makefile && cd ruby && $(MAKE) EPREFIX=$(DESTDIR)$(exec_prefix) $(RUBY_MAKE_OPTIONS) install || true
24         test -d python/build && cd python && env BUILDLIBDIR=../../src/.libs $(PYTHON) setup.py install --skip-build --prefix=$(DESTDIR)$(prefix) --exec-prefix=$(DESTDIR)$(exec_prefix) || true
25         test -f lua/Makefile && cd lua && $(MAKE) install || true
26
27 # rules for building the ruby module
28 # RUBYARCHDIR= is to work around in a makefile quirk not sure 
29 # it is is the right thing todo, but it makes rrdtool build on freebsd as well
30 ruby: 
31         cd ruby && $(RUBY) extconf.rb && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS) RUBYARCHDIR=
32
33 # rules for building the pyton module
34 python:
35         cd python && env BUILDLIBDIR=../../src/.libs $(PYTHON) setup.py build_ext --rpath=$(libdir) && env LIBDIR=../../src/.libs $(PYTHON) setup.py build
36
37 lua:
38         cd lua && $(LUA) Makefile.lua "PREFIX=$(prefix) POD2MAN=$(POD2MAN) LUABIN=$(LUA) $(LUA_MAKE_OPTIONS)" > Makefile && $(MAKE)
39
40 # rules for building the perl module
41 perl_piped: perl-piped/Makefile
42         cd perl-piped && $(MAKE)
43
44 perl-piped/Makefile: perl-piped/Makefile.PL
45         cd perl-piped && $(PERL) Makefile.PL $(PERL_MAKE_OPTIONS)
46
47 perl_shared: perl-shared/Makefile
48         cd perl-shared && $(MAKE)
49
50 perl-shared/Makefile: perl-shared/Makefile.PL
51         cd perl-shared && $(PERL) Makefile.PL $(PERLFLAGS) $(PERL_MAKE_OPTIONS) RPATH=$(libdir)
52 # LIBS="$(LDFLAGS) $(LIBS)" $(PERLFLAGS) $(PERL_MAKE_OPTIONS)
53
54 clean-local:
55         test -f perl-piped/Makefile && cd perl-piped && $(MAKE) clean || true
56         test -f perl-piped/Makefile && rm perl-piped/Makefile || true
57         test -f perl-shared/Makefile && cd perl-shared && $(MAKE) clean || true
58         test -f perl-shared/Makefile && rm -f perl-shared/Makefile || true 
59         test -f ruby/Makefile && cd ruby && $(MAKE) clean && rm Makefile || true 
60         test -f lua/Makefile && cd lua && $(MAKE) clean && rm Makefile || true 
61         test -d python/build && cd python &&  rm -rf build || true
62 ##END##