2018-01-07 20:13:20 +01:00
|
|
|
#
|
|
|
|
# external libs
|
|
|
|
#
|
|
|
|
|
|
|
|
# needed?
|
|
|
|
ifneq ($(TARGET_OS),WIN32)
|
|
|
|
$(error option must be built with TARGET_OS = WIN32)
|
|
|
|
endif
|
|
|
|
|
2008-06-15 07:43:40 +02:00
|
|
|
|
2008-06-15 13:24:09 +02:00
|
|
|
libvorbis.a: libvorbis.def
|
|
|
|
$(DLLTOOL) -d libvorbis.def -l libvorbis.a
|
2008-06-15 07:43:40 +02:00
|
|
|
|
2008-07-05 13:49:29 +02:00
|
|
|
libmpg123-0.a: libmpg123-0.def
|
|
|
|
$(DLLTOOL) -d libmpg123-0.def -l libmpg123-0.a
|
|
|
|
|
2010-03-23 21:57:12 +01:00
|
|
|
libg7221_decode.a: libg7221_decode.def
|
|
|
|
$(DLLTOOL) -d libg7221_decode.def -l libg7221_decode.a
|
|
|
|
|
2015-01-25 06:08:25 +01:00
|
|
|
libg719_decode.a: libg719_decode.def
|
|
|
|
$(DLLTOOL) -d libg719_decode.def -l libg719_decode.a
|
|
|
|
|
2015-05-12 00:02:21 +02:00
|
|
|
libat3plusdecoder.a: at3plusdecoder.def
|
|
|
|
$(DLLTOOL) -d at3plusdecoder.def -l libat3plusdecoder.a
|
2015-01-22 01:28:43 +01:00
|
|
|
|
2017-11-16 00:42:35 +01:00
|
|
|
libavcodec.a: avcodec-vgmstream-58.dll avcodec-vgmstream-58.def
|
|
|
|
$(DLLTOOL) -D avcodec-vgmstream-58.dll -d avcodec-vgmstream-58.def -l libavcodec.a
|
2016-12-26 13:57:15 +01:00
|
|
|
|
2017-11-16 00:42:35 +01:00
|
|
|
libavformat.a: avformat-vgmstream-58.dll avformat-vgmstream-58.def
|
|
|
|
$(DLLTOOL) -D avformat-vgmstream-58.dll -d avformat-vgmstream-58.def -l libavformat.a
|
2016-12-26 13:57:15 +01:00
|
|
|
|
2017-11-16 00:42:35 +01:00
|
|
|
libavutil.a: avutil-vgmstream-56.dll avutil-vgmstream-56.def
|
|
|
|
$(DLLTOOL) -D avutil-vgmstream-56.dll -d avutil-vgmstream-56.def -l libavutil.a
|
2016-12-26 13:57:15 +01:00
|
|
|
|
2017-11-16 00:42:35 +01:00
|
|
|
libswresample.a: swresample-vgmstream-3.dll swresample-vgmstream-3.def
|
|
|
|
$(DLLTOOL) -D swresample-vgmstream-3.dll -d swresample-vgmstream-3.def -l libswresample.a
|
2017-09-24 19:14:19 +02:00
|
|
|
|
2018-01-05 04:15:33 +01:00
|
|
|
libatrac9.a: libatrac9.dll libatrac9.def
|
2018-01-08 19:40:38 +01:00
|
|
|
$(DLLTOOL) -D libatrac9.dll -d libatrac9.def -l libatrac9.a
|
2018-01-05 04:15:33 +01:00
|
|
|
|
2008-06-15 07:43:40 +02:00
|
|
|
clean:
|
2018-01-07 20:13:20 +01:00
|
|
|
$(RMF) libvorbis.a libmpg123-0.a libg7221_decode.a libg719_decode.a libat3plusdecoder.a libavcodec.a libavformat.a libavutil.a libswresample.a libatrac9.a
|
|
|
|
|
|
|
|
.PHONY: clean
|