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
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 && $(RUBY) extconf.rb && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS)
27
28 # rules for building the perl module
29 perl_piped: perl-piped/Makefile
30         cd perl-piped && $(MAKE)
31
32 perl-piped/Makefile: perl-piped/Makefile.PL
33         cd perl-piped && $(PERL) Makefile.PL $(PERL_MAKE_OPTIONS)
34
35 perl_shared: perl-shared/Makefile
36         cd perl-shared && $(MAKE)
37
38 perl-shared/Makefile: perl-shared/Makefile.PL
39         cd perl-shared && $(PERL) Makefile.PL $(PERLFLAGS) $(PERL_MAKE_OPTIONS) RPATH=$(exec_prefix)/lib
40 # LIBS="$(LDFLAGS) $(LIBS)" $(PERLFLAGS) $(PERL_MAKE_OPTIONS)
41
42 clean-local:
43         test -f perl-piped/Makefile && cd perl-piped && $(MAKE) clean || true
44         test -f perl-piped/Makefile && rm perl-piped/Makefile || true
45         test -f perl-shared/Makefile && cd perl-shared && $(MAKE) clean || true
46         test -f perl-shared/Makefile && rm -f perl-shared/Makefile || true 
47         test -f ruby/Makefile && cd ruby && $(MAKE) clean && rm Makefile || true 
48
49 ##END##