export SHELL = /bin/sh export CFLAGS=-Wall -O3 export LDFLAGS=-lm -L../src -lvgmstream export CC=i586-mingw32msvc-gcc export AR=i586-mingw32msvc-ar export STRIP=i586-mingw32msvc-strip export WINDRES=i586-mingw32msvc-windres .PHONY: libvgmstream.a in_vgmstream.dll: libvgmstream.a in_vgmstream.c resource.o $(CC) -shared $(CFLAGS) "-DVERSION=\"`../version.sh`\"" in_vgmstream.c resource.o $(LDFLAGS) -o in_vgmstream.dll $(STRIP) in_vgmstream.dll resource.o: resource.rc resource.h $(WINDRES) -o resource.o resource.rc libvgmstream.a: $(MAKE) -C ../src libvgmstream.a clean: rm -f in_vgmstream.dll