Mercurial > hg > silvet
annotate constant-q-cpp/Makefile.linux @ 366:5d0a2ebb4d17
Bring dependent libraries in to repo
author | Chris Cannam |
---|---|
date | Fri, 24 Jun 2016 14:47:45 +0100 |
parents | |
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 |