Mercurial > hg > silvet
annotate Makefile.linux @ 360:87b3d04c1447
Added tag v1.1 for changeset b1dc04c74671
author | Chris Cannam |
---|---|
date | Tue, 08 Sep 2015 13:11:55 +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 |