summaryrefslogtreecommitdiff
path: root/python/Makefile.am
blob: fff5841fa76f1ff8760e7a015ce3fbc4b14e957e (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
# Makefile for rpm library.

AUTOMAKE_OPTIONS = 1.4 foreign

INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_srcdir)/rpmio \
	-I$(top_srcdir)/popt -I/usr/include/python1.5 @INCPATH@

EXTRA_DIST = hash.h upgrade.h
mylibs= \
	$(top_builddir)/lib/librpm.la \
	$(top_builddir)/lib/librpmio.la \
	$(top_builddir)/popt/libpopt.la

LDADD =

pythondir = $(prefix)/lib/python1.5/site-packages
python_PROGRAMS = rpmmodule.so
rpmmodule_so_SOURCES =
# XXX rpmmodule_so_LDFLAGS = -L../lib/.libs -lrpm -L../popt/.libs -lpopt $(LIBS) -shared -Wl,-soname,rpmmodule.so
rpmmodule_so_LDFLAGS = $(top_builddir)/lib/librpm.la	\
	$(top_builddir)/rpmio/librpmio.la		\
	$(top_builddir)/popt/libpopt.la			\
	$(LIBS) -shared -Wl,-soname,rpmmodule.so

noinst_LTLIBRARIES = librpmmodule.la
librpmmodule_la_SOURCES = rpmmodule.c hash.c upgrade.c

rpmmodule.so: $(librpmmodule_la_OBJECTS)
	$(LINK) -o $@ $^ $(rpmmodule_so_LDFLAGS)