Mercurial > hg > silvet
annotate constant-q-cpp/Makefile.linux @ 369:ef35549c1c56
Whoops, we need the Vamp SDK library to build the plugin!
author | Chris Cannam |
---|---|
date | Wed, 03 Aug 2016 10:47:26 +0100 |
parents | 5d0a2ebb4d17 |
children |
rev | line source |
---|---|
Chris@366 | 1 |
Chris@366 | 2 CFLAGS := -Wall -O3 -ffast-math -msse -msse2 -mfpmath=sse -fPIC -I../vamp-plugin-sdk/ |
Chris@366 | 3 #CFLAGS := -g -fPIC -I../vamp-plugin-sdk |
Chris@366 | 4 |
Chris@366 | 5 CXXFLAGS := $(CFLAGS) -std=c++11 |
Chris@366 | 6 |
Chris@366 | 7 PLUGIN_LDFLAGS := -shared -Wl,--version-script=vamp/vamp-plugin.map |
Chris@366 | 8 |
Chris@366 | 9 VAMPSDK_DIR := ../vamp-plugin-sdk |
Chris@366 | 10 |
Chris@366 | 11 PLUGIN_EXT := .so |
Chris@366 | 12 |
Chris@366 | 13 include Makefile.inc |
Chris@366 | 14 |