redo --disable-* options for python and tcl
[rrdtool.git] / bindings / python / Makefile.am
1 AM_CPPFLAGS = @CFLAGS@ -I../../src @PYTHON_INCLUDES@
2
3 #pythondir = $(pyexecdir)/python@PYTHON_VERSION@/site-packages
4
5 if BUILD_PYTHON
6
7 python_PROGRAMS = rrdtoolmodule.so
8
9 rrdtoolmodule_so_LDFLAGS = -module -shared -L../../src
10 rrdtoolmodule_so_LDADD = -lrrd
11 rrdtoolmodule_so_SOURCES =     rrdtoolmodule.c
12
13 noinst_HEADERS =                rrd_extra.h
14
15 clean:
16         rm -rf build
17
18 endif