Mercurial > hg > vamp-test-plugin
annotate Makefile.mingw32 @ 34:bc4841b14d0f
Copyright note, untabify
author | Chris Cannam |
---|---|
date | Wed, 14 Sep 2016 17:56:19 +0100 |
parents | e5bff6a7c4f7 |
children | 96cb7ef3cc24 |
rev | line source |
---|---|
Chris@14 | 1 |
Chris@29 | 2 TOOLPREFIX ?= i586-mingw32msvc- |
Chris@29 | 3 CXX = $(TOOLPREFIX)g++ |
Chris@29 | 4 CC = $(TOOLPREFIX)gcc |
Chris@29 | 5 LD = $(TOOLPREFIX)g++ |
Chris@29 | 6 AR = $(TOOLPREFIX)ar |
Chris@29 | 7 RANLIB = $(TOOLPREFIX)ranlib |
Chris@14 | 8 |
Chris@29 | 9 VAMPSDK_DIR ?= ../vamp-plugin-sdk |
Chris@14 | 10 |
Chris@29 | 11 CXXFLAGS := -Wall -Wextra -Werror -I$(VAMPSDK_DIR) $(ARCHFLAGS) |
Chris@14 | 12 |
Chris@23 | 13 PLUGIN_EXT := .dll |
Chris@14 | 14 |
Chris@29 | 15 PLUGIN_LDFLAGS := $(LDFLAGS) -shared -static -Wl,--retain-symbols-file=vamp-plugin.list $(VAMPSDK_DIR)/libvamp-sdk.a |
Chris@29 | 16 |
Chris@23 | 17 MAKEFILE_EXT := .mingw32 |
Chris@14 | 18 |
Chris@23 | 19 include Makefile.inc |
Chris@14 | 20 |