Mercurial > hg > vampy
changeset 14:8cd6346e755f
now installs example python plugins to the correct place
author | fazekasgy |
---|---|
date | Wed, 02 Jul 2008 12:17:58 +0000 |
parents | 3983172c1db2 |
children | 5e5f2af04e86 |
files | Makefile |
diffstat | 1 files changed, 6 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Wed Jul 02 12:11:35 2008 +0000 +++ b/Makefile Wed Jul 02 12:17:58 2008 +0000 @@ -4,10 +4,6 @@ vampy.dylib: PyPlugin.o PyPlugScanner.o pyvamp-main.o Mutex.o g++ -shared $^ -o $@ -L../vamp-plugin-sdk/vamp-sdk -lvamp-sdk -dynamiclib -lpython2.5 -lpthread -clean: - rm *.o - - # Install plugin # LIBRARY_PREFIX :=/Library @@ -20,7 +16,12 @@ mkdir -p $(INSTALL_DIR) rm -f $(INSTALL_DIR)/$(PLUGIN_NAME)$(PLUGIN_EXT) cp $(PLUGIN_NAME)$(PLUGIN_EXT) $(INSTALL_DIR)/$(PLUGIN_NAME)$(PLUGIN_EXT) -# cp $(PYEXAMPLE_DIR)/*.py $(INSTALL_DIR) + cp $(PYEXAMPLE_DIR)/*.py $(INSTALL_DIR) installplug : install cleanplug : clean + +clean: + rm *.o + rm *$(PLUGIN_EXT) + \ No newline at end of file