prepare for the release of rrdtool-1.2.16
[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         ruby/CHANGES     ruby/README      ruby/extconf.rb  ruby/main.c      ruby/test.rb
15
16
17 # add the following to the all target
18 all-local:  @COMP_PERL@ @COMP_RUBY@
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=$(exec_prefix) $(RUBY_MAKE_OPTIONS) install || true
24
25 # rules for buildung the ruby module
26 ruby: 
27         cd ruby && $(RUBY) extconf.rb && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS)
28
29 # rules for building the perl module
30 perl_piped: perl-piped/Makefile
31         cd perl-piped && $(MAKE)
32
33 perl-piped/Makefile: perl-piped/Makefile.PL
34         cd perl-piped && $(PERL) Makefile.PL $(PERL_MAKE_OPTIONS)
35
36 perl_shared: perl-shared/Makefile
37         cd perl-shared && $(MAKE)
38
39 perl-shared/Makefile: perl-shared/Makefile.PL
40         cd perl-shared && $(PERL) Makefile.PL $(PERLFLAGS) $(PERL_MAKE_OPTIONS) RPATH=$(exec_prefix)/lib
41 # LIBS="$(LDFLAGS) $(LIBS)" $(PERLFLAGS) $(PERL_MAKE_OPTIONS)
42
43 clean-local:
44         test -f perl-piped/Makefile && cd perl-piped && $(MAKE) clean || true
45         test -f perl-piped/Makefile && rm perl-piped/Makefile || true
46         test -f perl-shared/Makefile && cd perl-shared && $(MAKE) clean || true
47         test -f perl-shared/Makefile && rm -f perl-shared/Makefile || true 
48         test -f ruby/Makefile && cd ruby && $(MAKE) clean && rm Makefile || true 
49
50 ##END##