summaryrefslogtreecommitdiffstats
path: root/bindings/python/Makefile.am
diff options
context:
space:
mode:
authorNicholas Piper <nicholas@users.sourceforge.net>2006-05-07 17:55:35 +0000
committerNicholas Piper <nicholas@users.sourceforge.net>2006-05-07 17:55:35 +0000
commitea7be32cae9b599bafa3dbe97236a3a16470a3e5 (patch)
treee5b68b7266a7c05e1a563e636a0e07b06c3b0822 /bindings/python/Makefile.am
parent0a4c3fb059e7c5247e8734d1d5e1221663a479e9 (diff)
downloadlibgpod-ea7be32cae9b599bafa3dbe97236a3a16470a3e5.tar.gz
libgpod-ea7be32cae9b599bafa3dbe97236a3a16470a3e5.tar.xz
libgpod-ea7be32cae9b599bafa3dbe97236a3a16470a3e5.zip
Track, Database and Playlist support for the nicer API. add_song.py uses this now.
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1258 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'bindings/python/Makefile.am')
-rw-r--r--bindings/python/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am
index 1a6a396..381df7e 100644
--- a/bindings/python/Makefile.am
+++ b/bindings/python/Makefile.am
@@ -3,7 +3,8 @@ SUBDIRS = examples
EXTRA_DIST = \
gpod.i \
ipod.py \
- __init__.py
+ __init__.py \
+ gtkpod.py
CLEANFILES = \
*.py* \
@@ -34,9 +35,12 @@ install-pythonDATA: $(python_DATA)
$(INSTALL_PROGRAM) _gpod.so $(DESTDIR)$(pythondir)/gpod/_gpod.so
$(INSTALL_DATA) __init__.py $(DESTDIR)$(pythondir)/gpod/__init__.py
$(INSTALL_DATA) gpod.py $(DESTDIR)$(pythondir)/gpod/gpod.py
+ $(INSTALL_DATA) gtkpod.py $(DESTDIR)$(pythondir)/gpod/gtkpod.py
$(INSTALL_DATA) ipod.py $(DESTDIR)$(pythondir)/gpod/ipod.py
$(PYTHON) -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/gpod/gpod.py")'
$(PYTHON) -O -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/gpod/gpod.py")'
+ $(PYTHON) -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/gpod/gtkpod.py")'
+ $(PYTHON) -O -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/gpod/gtkpod.py")'
$(PYTHON) -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/gpod/ipod.py")'
$(PYTHON) -O -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/gpod/ipod.py")'