Mercurial > hg > silvet
annotate Makefile.linux @ 135:8db5e4ab56ce
Ground-truth data in CSV and lab format, converted from the MIDI using Sonic Visualiser and then to lab using the script here
author | Chris Cannam |
---|---|
date | Thu, 08 May 2014 12:59:09 +0100 |
parents | ac750e222ad3 |
children | 5e9ad8b2d9b1 |
rev | line source |
---|---|
Chris@31 | 1 |
Chris@106 | 2 CFLAGS := -Wall -O3 -fopenmp -ffast-math -msse -mfpmath=sse -ftree-vectorize -fPIC -I../vamp-plugin-sdk/ |
Chris@104 | 3 |
Chris@31 | 4 #CFLAGS := -g -fPIC -I../vamp-plugin-sdk |
Chris@31 | 5 |
Chris@31 | 6 CXXFLAGS := $(CFLAGS) |
Chris@31 | 7 |
Chris@31 | 8 VAMPSDK_DIR := ../vamp-plugin-sdk |
Chris@104 | 9 PLUGIN_LDFLAGS := -lgomp -shared -Wl,--version-script=vamp-plugin.map |
Chris@31 | 10 |
Chris@31 | 11 PLUGIN_EXT := .so |
Chris@31 | 12 |
Chris@31 | 13 include Makefile.inc |
Chris@31 | 14 |