From ea7be32cae9b599bafa3dbe97236a3a16470a3e5 Mon Sep 17 00:00:00 2001 From: Nicholas Piper Date: Sun, 7 May 2006 17:55:35 +0000 Subject: 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 --- bindings/python/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bindings/python/Makefile.am') 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")' -- cgit