Mercurial > hg > vampy
view host/Makefile @ 35:2ba482378038 vampy2
* Fix compile error with VC++. I am totally at a loss to explain
why this should have compiled with any other compiler!
* Update VC project file.
This code does now build with VC++ without HAVE_NUMPY -- I haven't
installed Numpy yet
author | cannam |
---|---|
date | Thu, 24 Sep 2009 08:52:04 +0000 |
parents | 4610f2b8477d |
children |
line wrap: on
line source
CFLAGS := -O2 -Wall -I/usr/include/python2.5 -I/usr/include/vamp-sdk/hostext/ -I/usr/include/vamp-sdk/ -I/Users/Shared/Development/vampy-host-experiments/ CXXFLAGS := -O2 -Wall -I/usr/include/python2.5 -I/usr/include/vamp-sdk/hostext/ -I/usr/include/vamp-sdk/ -I/Users/Shared/Development/vampy-host-experiments/ LDFLAGS := -dynamiclib -lpython2.5 /usr/lib/libvamp-hostsdk.a all: pyRealTime.so # all: pyRealTime.so vampyhost.so pyRealTime.a: pyRealTime.o ar r $@ pyRealTime.o pyRealTime.so: pyRealTime.o g++ -shared $^ -o $@ $(LDFLAGS) vampyhost.so: vampyhost.o pyRealTime.a g++ -o $@ -shared $^ $(LDFLAGS) clean: rm *.o rm *.so rm *.a