added ruby bindings ... thanks to Loïs LHERBIER lois.lherbier covadis.ch
[rrdtool.git] / bindings / Makefile.am
1 if BUILD_TCL
2 SUB_tcl = tcl
3 endif
4
5 if BUILD_PYTHON
6 SUB_python = python
7 endif
8
9 SUBDIRS = $(SUB_tcl) $(SUB_python)
10
11 # the following files are not mentioned in any other Makefile
12 EXTRA_DIST = perl-piped/MANIFEST perl-piped/README perl-piped/Makefile.PL perl-piped/RRDp.pm perl-piped/t/base.t \
13         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
14
15
16 # add the following to the all target
17 all-local:  @COMP_PERL@ @COMP_RUBY@
18
19 install-data-local:
20         test -f perl-piped/Makefile && cd perl-piped && $(MAKE) install || true
21         test -f perl-shared/Makefile && cd perl-shared && $(MAKE) install || true
22         test -f ruby/Makefile && cd ruby && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS) install || true
23
24 # rules for buildung the ruby module
25 ruby: ruby/Makefile
26         cd ruby && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS)
27
28 ruby/Makefile: ruby/extconf.rb
29         cd ruby && $(RUBY) extconf.rb
30         
31 # rules for building the perl module
32 perl_piped: perl-piped/Makefile
33         cd perl-piped && $(MAKE)
34
35 perl-piped/Makefile: perl-piped/Makefile.PL
36         cd perl-piped && $(PERL) Makefile.PL $(PERL_MAKE_OPTIONS)
37
38 perl_shared: perl-shared/Makefile
39         cd perl-shared && $(MAKE)
40
41 perl-shared/Makefile: perl-shared/Makefile.PL
42         cd perl-shared && $(PERL) Makefile.PL $(PERLFLAGS) $(PERL_MAKE_OPTIONS) RPATH=$(exec_prefix)/lib
43 # LIBS="$(LDFLAGS) $(LIBS)" $(PERLFLAGS) $(PERL_MAKE_OPTIONS)
44
45 clean-local:
46         test -f perl-piped/Makefile && cd perl-piped && $(MAKE) clean || true
47         test -f perl-piped/Makefile && rm perl-piped/Makefile || true
48         test -f perl-shared/Makefile && cd perl-shared && $(MAKE) clean || true
49         test -f perl-shared/Makefile && rm -f perl-shared/Makefile || true 
50         test -f ruby/Makefile && rm -f ruby/Makefile || true 
51
52 ##END##