premiere-libtorrent/bindings/python/Makefile.am

49 lines
1.2 KiB
Makefile
Raw Normal View History

EXTRA_DIST = \
CMakeLists.txt \
Jamfile \
setup.py \
client.py \
simple_client.py \
2011-04-10 10:43:46 +02:00
make_torrent.py \
src/alert.cpp \
2014-11-27 04:05:06 +01:00
src/bytes.hpp \
src/big_number.cpp \
src/converters.cpp \
src/create_torrent.cpp \
src/datetime.cpp \
src/entry.cpp \
src/error_code.cpp \
src/fingerprint.cpp \
src/gil.hpp \
src/ip_filter.cpp \
src/magnet_uri.cpp \
src/module.cpp \
src/optional.hpp \
src/peer_info.cpp \
src/boost_python.hpp \
src/session.cpp \
src/session_settings.cpp \
2012-11-23 21:43:42 +01:00
src/string.cpp \
src/torrent_handle.cpp \
src/torrent_info.cpp \
src/torrent_status.cpp \
src/utility.cpp \
src/version.cpp
2008-11-21 05:09:34 +01:00
if ENABLE_PYTHON_BINDING
all-local:
2015-08-03 17:14:06 +02:00
$(PYTHON) $(srcdir)/setup.py build
2008-11-21 05:09:34 +01:00
install-exec-local:
2015-08-03 17:14:06 +02:00
$(PYTHON) $(srcdir)/setup.py install @PYTHON_INSTALL_PARAMS@
2008-11-21 05:09:34 +01:00
uninstall-local:
rm -rf $(DESTDIR)$(libdir)/python*/*-packages/*libtorrent*
2008-11-21 05:09:34 +01:00
clean-local:
2015-08-03 17:14:06 +02:00
$(PYTHON) $(srcdir)/setup.py clean --all
2008-11-21 05:09:34 +01:00
endif