1 # $Id$
3 ## Process this file with automake to produce Makefile.in
4 RSYNC = rsync --rsh=ssh
6 # build the following subdirectories
8 SUBDIRS = po src examples doc bindings
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
20 CLEANFILES = config.cache
22 # use relaxed rules when building dists
23 AUTOMAKE_OPTIONS= foreign
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
31 # $(RSYNC) CHANGES archive/$(PACKAGE)-$(VERSION).tar.gz tobi@ipn.caida.org:/ipn/web/Tools/RRDtool/pub/
33 site-perl-inst: site-perl-install
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
39 site-tcl-install: all
40 cd bindings/tcl && $(MAKE) tcl-install
42 site-python-install: all
43 cd bindings/python && $(PYTHON) setup.py install $(if $(DESTDIR),--root=$(DESTDIR))
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
49 ##END##