view Makefile.mingw32 @ 75:84d1a0647ce5 tip

Split out COPYING from README
author Chris Cannam
date Fri, 06 Mar 2020 11:01:53 +0000
parents 686ef2976366
children
line wrap: on
line source

CXX		= i486-mingw32-c++
CC		= i486-mingw32-gcc
LD            	= i486-mingw32-c++
AR            	= i486-mingw32-ar
RANLIB          = i486-mingw32-ranlib

TESTS		= test/null

CFLAGS := -Wall -O2 -I../include 
CXXFLAGS := $(CFLAGS)

LDFLAGS	 := -L../lib
PLUGIN_LDFLAGS := -shared -Wl,-Bstatic -static-libgcc -Wl,--version-script=vamp-plugin.map

PLUGIN_EXT := .dll

include Makefile.inc

test/null:	
		ln -s /bin/true test/null