summaryrefslogtreecommitdiffstats
path: root/bindings/python/Makefile.am
diff options
context:
space:
mode:
authorNicholas Piper <nicholas@users.sourceforge.net>2006-04-09 16:38:12 +0000
committerNicholas Piper <nicholas@users.sourceforge.net>2006-04-09 16:38:12 +0000
commit7252444ca4b911507beaa9d62f6ddb28520b2284 (patch)
treebf60b90d0264d105ca06038d2da0137e58c926f3 /bindings/python/Makefile.am
parente0d16167d95a568f612675bc4dbbebe161890af7 (diff)
downloadlibgpod-7252444ca4b911507beaa9d62f6ddb28520b2284.tar.gz
libgpod-7252444ca4b911507beaa9d62f6ddb28520b2284.tar.xz
libgpod-7252444ca4b911507beaa9d62f6ddb28520b2284.zip
Very start of a much nicer API from Python
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1242 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'bindings/python/Makefile.am')
-rw-r--r--bindings/python/Makefile.am9
1 files changed, 7 insertions, 2 deletions
diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am
index af4e9e1..8dba92c 100644
--- a/bindings/python/Makefile.am
+++ b/bindings/python/Makefile.am
@@ -1,7 +1,8 @@
SUBDIRS = examples
EXTRA_DIST = \
- gpod.i
+ gpod.i \
+ ipod.py
CLEANFILES = \
*.py* \
@@ -31,9 +32,13 @@ install-pythonDATA: $(python_DATA)
$(mkinstalldirs) $(DESTDIR)$(pythondir)
$(INSTALL_PROGRAM) _gpod.so $(DESTDIR)$(pythondir)/_gpod.so
$(INSTALL_DATA) gpod.py $(DESTDIR)$(pythondir)/gpod.py
+ $(INSTALL_DATA) ipod.py $(DESTDIR)$(pythondir)/ipod.py
$(PYTHON) -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/gpod.py")'
$(PYTHON) -O -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/gpod.py")'
+ $(PYTHON) -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/ipod.py")'
+ $(PYTHON) -O -c 'from py_compile import compile; compile("$(DESTDIR)$(pythondir)/ipod.py")'
uninstall-pythonDATA: $(python_DATA)
- rm -f $(DESTDIR)$(pythondir)/_gpod.so $(DESTDIR)$(pythondir)/gpod.py
+ rm -f $(DESTDIR)$(pythondir)/_gpod.so
+ rm -f $(DESTDIR)$(pythondir)/gpod.py $(DESTDIR)$(pythondir)/ipod.py
endif