blob: 90370d86175907084167a7a048e866688592956f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
xlator_PROGRAMS = python.so
xlatordir = $(libdir)/glusterfs/$(PACKAGE_VERSION)/xlator/bindings
python_PYTHON = gluster.py glustertypes.py glusterstack.py
pythondir = $(xlatordir)/python
python_so_SOURCES = python.c
AM_CFLAGS = -fPIC $(GF_CPPFLAGS) -Wall \
-I$(top_srcdir)/libglusterfs/src -shared -nostartfiles \
$(PYTHON_CPPLAGS) -DGLUSTER_PYTHON_PATH=\"$(pythondir)\"
AM_LDFLAGS = $(PYTHON_LDFLAGS)
CLEANFILES =
|