2008-03-10 22:58:31 +00:00
|
|
|
export SHELL = /bin/sh
|
2015-01-24 21:08:25 -08:00
|
|
|
export CFLAGS=-Wall -O3 "-DVGM_USE_G7221" "-DVGM_USE_G719" "-DVGM_USE_MAIATRAC3PLUS" "-DWIN32" "-DUSE_ALLOCA" -I../ext_includes
|
|
|
|
export LDFLAGS=-L../src -L../ext_libs -lvgmstream -lvorbis -lmpg123-0 -lg7221_decode -lg719_decode -lat3plusdecoder -lm
|
2008-03-10 22:58:31 +00:00
|
|
|
export CC=i586-mingw32msvc-gcc
|
|
|
|
export AR=i586-mingw32msvc-ar
|
|
|
|
export STRIP=i586-mingw32msvc-strip
|
2008-05-16 16:09:28 +00:00
|
|
|
export WINDRES=i586-mingw32msvc-windres
|
2008-03-10 22:58:31 +00:00
|
|
|
|
2015-01-21 19:28:43 -05:00
|
|
|
#export CC=i686-w64-mingw32-gcc
|
|
|
|
#export AR=i686-w64-mingw32-ar
|
|
|
|
#export STRIP=i686-w64-mingw32-strip
|
|
|
|
#export WINDRES=i686-w64-mingw32-windres
|
|
|
|
|
2015-01-24 21:08:25 -08:00
|
|
|
.PHONY: libvgmstream.a libvorbis.a libmpg123-0.a libg7221_decode.a libg719_decode.a at3plusdecoder.a
|
2008-03-10 22:58:31 +00:00
|
|
|
|
2015-05-11 15:02:21 -07:00
|
|
|
in_vgmstream.dll: libvgmstream.a libvorbis.a libmpg123-0.a libg7221_decode.a libg719_decode.a libat3plusdecoder.a in_vgmstream.c resource.o
|
2014-09-16 16:29:32 -07:00
|
|
|
$(CC) -shared -static-libgcc $(CFLAGS) "-DVERSION=\"`../version.sh`\"" in_vgmstream.c resource.o $(LDFLAGS) -o in_vgmstream.dll
|
2008-03-10 22:58:31 +00:00
|
|
|
$(STRIP) in_vgmstream.dll
|
|
|
|
|
2008-05-16 16:09:28 +00:00
|
|
|
resource.o: resource.rc resource.h
|
|
|
|
$(WINDRES) -o resource.o resource.rc
|
|
|
|
|
2008-03-10 22:58:31 +00:00
|
|
|
libvgmstream.a:
|
|
|
|
$(MAKE) -C ../src libvgmstream.a
|
|
|
|
|
2008-06-15 11:24:09 +00:00
|
|
|
libvorbis.a:
|
2010-03-23 20:57:12 +00:00
|
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
2008-06-15 05:43:40 +00:00
|
|
|
|
2008-07-05 11:49:29 +00:00
|
|
|
libmpg123-0.a:
|
2010-03-23 20:57:12 +00:00
|
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
|
|
|
|
libg7221_decode.a:
|
|
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
2008-07-05 11:49:29 +00:00
|
|
|
|
2015-01-24 21:08:25 -08:00
|
|
|
libg719_decode.a:
|
|
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
|
2015-05-16 15:30:15 -07:00
|
|
|
libat3plusdecoder.a:
|
2015-01-21 19:28:43 -05:00
|
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
|
2008-03-10 22:58:31 +00:00
|
|
|
clean:
|
2008-05-19 08:21:51 +00:00
|
|
|
rm -f in_vgmstream.dll resource.o
|