1997-01-01 09:30:08 +08:00
|
|
|
# Makefile for rpm library.
|
|
|
|
|
2009-10-02 21:18:59 +08:00
|
|
|
EXTRA_DIST = rpm/__init__.py rpm/transaction.py
|
2002-12-11 03:46:03 +08:00
|
|
|
|
2011-03-09 21:31:25 +08:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/include/
|
2007-10-17 22:41:59 +08:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/python
|
2007-10-17 21:08:01 +08:00
|
|
|
AM_CPPFLAGS += -I@WITH_PYTHON_INCLUDE@
|
1997-01-01 09:30:08 +08:00
|
|
|
|
2010-10-13 19:29:28 +08:00
|
|
|
pkgpyexec_LTLIBRARIES = _rpmmodule.la _rpmbmodule.la _rpmsmodule.la
|
2009-10-02 21:18:59 +08:00
|
|
|
pkgpyexec_DATA = rpm/__init__.py rpm/transaction.py
|
2007-09-03 11:11:40 +08:00
|
|
|
|
2010-10-01 16:05:45 +08:00
|
|
|
_rpmmodule_la_LDFLAGS = -module -avoid-version -shared
|
2007-09-03 11:11:40 +08:00
|
|
|
_rpmmodule_la_LIBADD = \
|
2004-06-15 00:34:04 +08:00
|
|
|
$(top_builddir)/lib/librpm.la \
|
|
|
|
$(top_builddir)/rpmio/librpmio.la \
|
2007-09-10 16:45:44 +08:00
|
|
|
@WITH_PYTHON_LIB@
|
|
|
|
|
2009-09-23 04:02:47 +08:00
|
|
|
_rpmmodule_la_SOURCES = rpmmodule.c rpmsystem-py.h \
|
2007-09-10 16:45:44 +08:00
|
|
|
header-py.c header-py.h \
|
|
|
|
rpmds-py.c rpmds-py.h \
|
2009-09-23 16:09:19 +08:00
|
|
|
rpmfd-py.c rpmfd-py.h \
|
2007-09-10 16:45:44 +08:00
|
|
|
rpmfi-py.c rpmfi-py.h \
|
2009-10-09 14:02:19 +08:00
|
|
|
rpmkeyring-py.c rpmkeyring-py.h \
|
2007-09-10 16:45:44 +08:00
|
|
|
rpmmi-py.c rpmmi-py.h \
|
2010-10-25 01:39:42 +08:00
|
|
|
rpmii-py.c rpmii-py.h \
|
2007-09-10 16:45:44 +08:00
|
|
|
rpmps-py.c rpmps-py.h \
|
2007-11-29 16:06:57 +08:00
|
|
|
rpmmacro-py.c rpmmacro-py.h \
|
2013-12-13 20:39:43 +08:00
|
|
|
rpmstrpool-py.c rpmstrpool-py.h \
|
2009-09-23 17:49:15 +08:00
|
|
|
rpmtd-py.c rpmtd-py.h \
|
2007-09-10 16:45:44 +08:00
|
|
|
rpmte-py.c rpmte-py.h \
|
2009-10-02 23:31:32 +08:00
|
|
|
rpmts-py.c rpmts-py.h
|
|
|
|
|
2010-10-01 16:05:45 +08:00
|
|
|
_rpmbmodule_la_LDFLAGS = -module -avoid-version -shared
|
2009-10-02 23:31:32 +08:00
|
|
|
_rpmbmodule_la_LIBADD = \
|
|
|
|
$(top_builddir)/build/librpmbuild.la \
|
|
|
|
$(top_builddir)/lib/librpm.la \
|
|
|
|
$(top_builddir)/rpmio/librpmio.la \
|
|
|
|
@WITH_PYTHON_LIB@
|
|
|
|
|
|
|
|
_rpmbmodule_la_SOURCES = rpmbmodule.c rpmsystem-py.h \
|
2007-09-10 16:45:44 +08:00
|
|
|
spec-py.c spec-py.h
|
2010-10-13 19:29:28 +08:00
|
|
|
|
|
|
|
_rpmsmodule_la_LDFLAGS = -module -avoid-version -shared
|
|
|
|
_rpmsmodule_la_LIBADD = \
|
2010-10-22 20:51:36 +08:00
|
|
|
$(top_builddir)/sign/librpmsign.la \
|
2010-10-13 19:29:28 +08:00
|
|
|
$(top_builddir)/lib/librpm.la \
|
|
|
|
$(top_builddir)/rpmio/librpmio.la \
|
|
|
|
@WITH_PYTHON_LIB@
|
|
|
|
|
|
|
|
_rpmsmodule_la_SOURCES = rpmsmodule.c rpmsystem-py.h
|
|
|
|
|