mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-14 18:47:39 +01:00
e5ddad3b1f
.s14 and .sss support. Other builds will probably not build correctly, I'll follow up with something to disable G.722.1 there in a bit. git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@760 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
15 lines
370 B
Makefile
15 lines
370 B
Makefile
export SHELL = /bin/sh
|
|
export DLLTOOL=i586-mingw32msvc-dlltool
|
|
|
|
libvorbis.a: libvorbis.def
|
|
$(DLLTOOL) -d libvorbis.def -l libvorbis.a
|
|
|
|
libmpg123-0.a: libmpg123-0.def
|
|
$(DLLTOOL) -d libmpg123-0.def -l libmpg123-0.a
|
|
|
|
libg7221_decode.a: libg7221_decode.def
|
|
$(DLLTOOL) -d libg7221_decode.def -l libg7221_decode.a
|
|
|
|
clean:
|
|
rm -f libvorbis.a libmpg123-0.a libg7221_decode.a
|