annotate Makefile.linux @ 316:f3e10617a60d livemode

Live mode enhancements: Adjust processing parameters (for speed) and peak-pick pitch activations across frequency (to avoid neighbouring-semitone clusters)
author Chris Cannam
date Tue, 28 Apr 2015 12:21:40 +0100
parents f98ba4f47e49
children 806b2ea65416
rev   line source
Chris@31 1
Chris@312 2 CFLAGS := -Wall -O3 -ffast-math -msse -msse2 -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@311 6 CXXFLAGS := $(CFLAGS) -std=c++11
Chris@31 7
Chris@31 8 VAMPSDK_DIR := ../vamp-plugin-sdk
Chris@312 9 PLUGIN_LDFLAGS := -shared -Wl,-Bsymbolic -Wl,-z,defs -Wl,--version-script=vamp-plugin.map
Chris@31 10
Chris@31 11 PLUGIN_EXT := .so
Chris@31 12
Chris@276 13 MAKEFILE_EXT := .linux
Chris@276 14
Chris@31 15 include Makefile.inc
Chris@31 16
Chris@234 17