Mercurial > hg > vampy
view host/Makefile @ 29:e80caada79a8
* Remove nonportable and unnecessary opendir features test (originally
inherited from the Vamp SDK's implementation of a similar plugin lookup,
but it's been gone from the SDK for ages now)
* Comment out some excessive debug output
author | cannam |
---|---|
date | Tue, 22 Sep 2009 15:20:44 +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