Annotation of gpl/axl/py-axl/Makefile.am, revision 1.1.1.2
1.1 misho 1: EXTRA_DIST = __init__.py
2:
3: SUBDIRS = doc
4:
5: if ENABLE_AXL_LOG
6: LOG = -DSHOW_DEBUG_LOG
7: endif
8:
1.1.1.2 ! misho 9:
! 10: INCLUDES = $(compiler_options) -g -I$(top_srcdir) $(LIBRARIES_CFLAGS) -DVERSION=\""$(AXL_VERSION)"\" \
! 11: -DPACKAGE_DTD_DIR=\""$(datadir)"\" -DPACKAGE_TOP_DIR=\""$(top_srcdir)"\" \
1.1 misho 12: -D__axl_disable_broken_bool_def__ \
13: -DVERSION=\"$(AXL_VERSION)\" $(LOG) -I../src $(PYTHON_CFLAGS)
14:
15: lib_LTLIBRARIES = libpy_axl.la
16:
17: # libpy_axl.la
18: libpy_axl_la_include_HEADERS = \
19: py_axl.h \
20: py_axl_doc.h \
21: py_axl_error.h \
22: py_axl_node.h \
23: py_axl_attr_cursor.h \
24: py_axl_dtd.h \
25: py_axl_list.h \
26: py_axl_hash.h \
27: py_axl_stack.h \
28: py_axl_stream.h
29: libpy_axl_la_SOURCES = \
30: py_axl.c \
31: py_axl_doc.c \
32: py_axl_error.c \
33: py_axl_node.c \
34: py_axl_attr_cursor.c \
35: py_axl_dtd.c \
36: py_axl_list.c \
37: py_axl_hash.c \
38: py_axl_stack.c \
39: py_axl_stream.c
40: libpy_axl_la_LDFLAGS = $(PYTHON_LIBS) ../src/libaxl.la
41: libpy_axl_la_includedir = $(includedir)/py_axl
42:
43: libdir = ${pythondir}/axl
44:
45: install-exec-hook:
46: @echo "site installation ${pythondir}/axl prefix=${DESTDIR}.."
47: install -d ${DESTDIR}${pythondir}/axl
48: install -m 644 \
49: __init__.py \
50: ${DESTDIR}${pythondir}/axl
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>