comparison Makefile.linux @ 49:0f16923521bb

* Minor Makefile updates
author cannam
date Tue, 06 Oct 2009 12:04:33 +0000
parents 2fbb37d50be5
children 74703a562ce3
comparison
equal deleted inserted replaced
48:cb207d275e8e 49:0f16923521bb
1 1
2 CXXFLAGS := -DHAVE_NUMPY -O2 -Wall -I/usr/include/python2.6 -I/usr/lib/python2.6/dist-packages/numpy/core/include/numpy -fPIC 2 CXXFLAGS := -DHAVE_NUMPY -O2 -Wall -I/usr/include/python2.6 -I/usr/lib/python2.6/dist-packages/numpy/core/include -fPIC
3 LDFLAGS := -shared -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython2.6 -lpthread -Wl,--version-script=vamp-plugin.map 3 LDFLAGS := -shared -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython2.6 -lpthread -Wl,--version-script=vamp-plugin.map
4 4
5 default: vampy.so 5 default: vampy.so
6 all: vampy.so vampymod.so 6 all: vampy.so vampymod.so
7 7
29 29
30 installplug : install 30 installplug : install
31 cleanplug : clean 31 cleanplug : clean
32 32
33 clean: 33 clean:
34 rm *.o 34 rm -f *.o
35 rm *.a 35 rm -f *.a
36 rm *$(PLUGIN_EXT) 36 rm -f *$(PLUGIN_EXT)
37 37