mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-12 01:30:49 +01:00
34 lines
1.3 KiB
Makefile
34 lines
1.3 KiB
Makefile
export SHELL = /bin/sh
|
|
#export DLLTOOL=i586-mingw32msvc-dlltool
|
|
export DLLTOOL=i686-w64-mingw32-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
|
|
|
|
libg719_decode.a: libg719_decode.def
|
|
$(DLLTOOL) -d libg719_decode.def -l libg719_decode.a
|
|
|
|
libat3plusdecoder.a: at3plusdecoder.def
|
|
$(DLLTOOL) -d at3plusdecoder.def -l libat3plusdecoder.a
|
|
|
|
libavcodec.a: avcodec-vgmstream-57.dll avcodec-vgmstream-57.def
|
|
$(DLLTOOL) -D avcodec-vgmstream-57.dll -d avcodec-vgmstream-57.def -l libavcodec.a
|
|
|
|
libavformat.a: avformat-vgmstream-57.dll avformat-vgmstream-57.def
|
|
$(DLLTOOL) -D avformat-vgmstream-57.dll -d avformat-vgmstream-57.def -l libavformat.a
|
|
|
|
libavutil.a: avutil-vgmstream-55.dll avutil-vgmstream-55.def
|
|
$(DLLTOOL) -D avutil-vgmstream-55.dll -d avutil-vgmstream-55.def -l libavutil.a
|
|
|
|
libswresample.a: swresample-vgmstream-2.dll swresample-vgmstream-2.def
|
|
$(DLLTOOL) -D swresample-vgmstream-2.dll -d swresample-vgmstream-2.def -l libswresample.a
|
|
|
|
clean:
|
|
rm -f libvorbis.a libmpg123-0.a libg7221_decode.a libg719_decode.a libat3plusdecoder.a libavcodec.a libavformat.a libavutil.a libswresample.a
|