2006-10-15 15:38:02 -04:00
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
prefix = @prefix@
|
|
|
|
|
|
|
|
CFLAGS = $(subst -Werror,,@CFLAGS@)
|
|
|
|
CFLAGS += $(shell python -c 'from distutils import sysconfig; print "-I" + sysconfig.get_python_inc()')
|
|
|
|
CFLAGS += -I$(top_srcdir)/lib/libalpm
|
2006-12-14 00:23:08 -05:00
|
|
|
CFLAGS += -fno-strict-aliasing # see the swig docs
|
2006-10-15 15:38:02 -04:00
|
|
|
ifeq ($(shell arch),x86_64)
|
|
|
|
CFLAGS += -fPIC
|
|
|
|
endif
|
2006-10-25 11:40:44 -04:00
|
|
|
LDFLAGS += -L$(top_srcdir)/lib/libalpm/.libs -lalpm
|
2006-10-15 15:38:02 -04:00
|
|
|
LIBDIR += $(shell python -c 'from distutils import sysconfig; print sysconfig.get_python_lib()'|sed 's|/usr|$(prefix)|')
|
|
|
|
|
|
|
|
all: _alpm.so alpm.pyc
|
|
|
|
|
|
|
|
_alpm.so: alpm_wrap.o
|
|
|
|
$(CC) -shared -Wl,-soname,$@ -o $@ $^ $(LDFLAGS)
|
|
|
|
|
|
|
|
alpm_wrap.o: alpm_wrap.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ -include alpm.h $^
|
|
|
|
|
|
|
|
alpm_wrap.c:
|
|
|
|
cp $(top_srcdir)/lib/libalpm/alpm.h ./
|
|
|
|
cp $(top_srcdir)/bindings/alpm.i ./
|
|
|
|
swig -python alpm.i
|
|
|
|
# strip the unnecessary prefixes
|
|
|
|
sed -i 's/^alpm_//;s/^PM_//' alpm.py
|
|
|
|
|
|
|
|
alpm.pyc: alpm.py
|
|
|
|
python -c "import compileall; compileall.compile_dir('.',1,'.')"
|
|
|
|
|
|
|
|
alpm.py: alpm_wrap.c
|
|
|
|
|
|
|
|
install: install-so install-py
|
|
|
|
|
|
|
|
install-so: _alpm.so
|
|
|
|
mkdir -p $(DESTDIR)$(LIBDIR)
|
|
|
|
install $^ $(DESTDIR)$(LIBDIR)
|
|
|
|
|
|
|
|
install-py: alpm.py alpm.pyc
|
|
|
|
install -m644 $^ $(DESTDIR)$(LIBDIR)
|
|
|
|
|
|
|
|
clean:
|
2007-01-18 11:52:57 -05:00
|
|
|
rm -f _alpm* alpm{.h,.i,.py*,_wrap*}
|
2006-10-15 15:38:02 -04:00
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
rm -f Makefile
|
|
|
|
|
|
|
|
check:
|