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