comparison Makefile @ 25:7648f3f2fa14

cleaned up vampy preloading, no functional change. tried python preload, did not work.
author fazekasgy
date Tue, 18 Aug 2009 08:32:45 +0000
parents 5e5f2af04e86
children 4f1894c7591b
comparison
equal deleted inserted replaced
24:7d28bed0864e 25:7648f3f2fa14
1 1
2 CXXFLAGS := -I../vamp-plugin-sdk -O2 -Wall -I/usr/include/python2.5 -fvisibility=hidden 2 CXXFLAGS := -I../vamp-plugin-sdk -O2 -Wall -I/usr/include/python2.5
3 #-fvisibility=hidden
3 4
4 vampy.dylib: PyPlugin.o PyPlugScanner.o pyvamp-main.o Mutex.o 5 vampy.dylib: PyPlugin.o PyPlugScanner.o pyvamp-main.o Mutex.o
5 g++ -shared $^ -o $@ -L../vamp-plugin-sdk/vamp-sdk -lvamp-sdk -dynamiclib -lpython2.5 -lpthread 6 g++ -shared $^ -o $@ -L../vamp-plugin-sdk/vamp-sdk -lvamp-sdk -dynamiclib -lpython2.5 -lpthread
6 7
7 # Install plugin 8 # Install plugin
14 15
15 install: 16 install:
16 mkdir -p $(INSTALL_DIR) 17 mkdir -p $(INSTALL_DIR)
17 rm -f $(INSTALL_DIR)/$(PLUGIN_NAME)$(PLUGIN_EXT) 18 rm -f $(INSTALL_DIR)/$(PLUGIN_NAME)$(PLUGIN_EXT)
18 cp $(PLUGIN_NAME)$(PLUGIN_EXT) $(INSTALL_DIR)/$(PLUGIN_NAME)$(PLUGIN_EXT) 19 cp $(PLUGIN_NAME)$(PLUGIN_EXT) $(INSTALL_DIR)/$(PLUGIN_NAME)$(PLUGIN_EXT)
19 cp $(PYEXAMPLE_DIR)/*.py $(INSTALL_DIR) 20 #cp $(PYEXAMPLE_DIR)/*.py $(INSTALL_DIR)
20 21
21 installplug : install 22 installplug : install
22 cleanplug : clean 23 cleanplug : clean
23 24
24 clean: 25 clean: