# HG changeset patch # User fazekasgy # Date 1215001078 0 # Node ID 8cd6346e755fa32603b85039f5b7d31a6ba54bbe # Parent 3983172c1db2c768c5f4fdf2b83381f42e7dc027 now installs example python plugins to the correct place diff -r 3983172c1db2 -r 8cd6346e755f Makefile --- 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