summaryrefslogtreecommitdiff
path: root/python/Makefile.am
blob: 2d09af0da653be139db105e3b1243d4597f6c44e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Makefile for rpm library.

EXTRA_DIST = rpm/__init__.py

if PYTHON
AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include/
AM_CPPFLAGS += -I$(top_srcdir)/python
AM_CPPFLAGS += -I$(top_srcdir)/misc
AM_CPPFLAGS += -I@WITH_PYTHON_INCLUDE@

pkgpyexec_LTLIBRARIES = _rpmmodule.la
pkgpyexec_DATA = rpm/__init__.py

_rpmmodule_la_LDFLAGS = -module -avoid-version
_rpmmodule_la_LIBADD = \
	$(top_builddir)/build/librpmbuild.la \
	$(top_builddir)/lib/librpm.la \
	$(top_builddir)/rpmio/librpmio.la \
	@WITH_PYTHON_LIB@

_rpmmodule_la_SOURCES = rpmmodule.c system.h \
	header-py.c header-py.h \
	rpmds-py.c rpmds-py.h \
	rpmdb-py.c rpmdb-py.h \
	rpmfi-py.c rpmfi-py.h \
	rpmmi-py.c rpmmi-py.h \
	rpmps-py.c rpmps-py.h \
	rpmmacro-py.c rpmmacro-py.h \
	rpmte-py.c rpmte-py.h \
	rpmts-py.c rpmts-py.h \
	spec-py.c spec-py.h
endif