annotate Makefile.linux @ 339:bcfdaa708992 livemode

Threshold of 5 is definitely better than threshold 6 for piano... but I'm still unpersuaded about the advantages of even lower thresholds -- need to go over this again
author Chris Cannam
date Tue, 30 Jun 2015 09:38:12 +0100
parents 806b2ea65416
children ef35549c1c56
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@334 9 PLUGIN_LDFLAGS := -shared -Wl,-Bsymbolic -Wl,-z,defs -Wl,--version-script=vamp-plugin.map -lpthread
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