rrd_daemon handle_request_fetch needs to convert to absolute path -- Thorsten von...
[rrdtool.git] / Makefile.am
1 # $Id$
2
3 ## Process this file with automake to produce Makefile.in
4 RSYNC = rsync --rsh=ssh
5
6 # build the following subdirectories
7
8 SUBDIRS = po src examples doc bindings intl
9
10  # the following files are not mentioned in any other Makefile
11 EXTRA_DIST = COPYRIGHT CHANGES WIN32-BUILD-TIPS.txt TODO CONTRIBUTORS THREADS \
12              rrdtool.spec favicon.ico  win32/Makefile win32/config.h autogen.sh \
13              win32/rrd.dsp win32/rrd.sln win32/rrd.vcproj libtool \
14              win32/rrd_config.h.msvc win32/rrdlib.vcproj win32/rrdtool.dsp \
15              win32/rrdtool.dsw win32/rrdtool.vcproj netware/Makefile  \
16              etc/rrdcached-default etc/rrdcached-init
17
18              
19
20 CLEANFILES = config.cache
21
22 # use relaxed rules when building dists
23 AUTOMAKE_OPTIONS= foreign 
24
25 # where we keep local rules for automake
26 ACLOCAL_AMFLAGS=-I m4
27 ACLOCAL_M4= $(top_srcdir)/aclocal.m4
28 #AUTOHEADER = @AUTOHEADER@ --localdir=$(top_srcdir)/config
29 #AUTOCONF = @AUTOCONF@ --localdir=$(top_srcdir)/config
30
31 #       $(RSYNC) CHANGES archive/$(PACKAGE)-$(VERSION).tar.gz tobi@ipn.caida.org:/ipn/web/Tools/RRDtool/pub/
32
33 site-perl-inst: site-perl-install
34
35 site-perl-install: all bindings/perl-piped/Makefile bindings/perl-shared/Makefile
36         cd bindings/perl-piped && $(MAKE) install
37         cd bindings/perl-shared && $(MAKE) install
38
39 site-tcl-install: all
40         cd bindings/tcl && $(MAKE) tcl-install
41
42 site-python-install: all
43         cd bindings/python && $(PYTHON) setup.py install $(if $(DESTDIR),--root=$(DESTDIR))
44
45 # find . -name "*.c" -or -name "*.h" | xargs perl -0777 -n -e 'while (s/typedef\s+(?:unsigned\s+|signed\s+|unival\s+)?\S+\s+\*?([^{}\s;(]+)//){print "-T$1\n"}'
46 indent:
47         find ./ -name "*.[ch]" | xargs indent
48
49 ##END##