mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-12 01:30:49 +01:00
77 lines
2.2 KiB
Makefile
77 lines
2.2 KiB
Makefile
# optional parts
|
|
VGM_ENABLE_FFMPEG=1
|
|
ifeq ($(VGM_ENABLE_FFMPEG),1)
|
|
FFMPEG_CC=-DVGM_USE_FFMPEG
|
|
FFMPEG_LD=-lavcodec -lavformat -lavutil -lswresample
|
|
endif
|
|
|
|
VGM_ENABLE_MAIATRAC3PLUS=0
|
|
ifeq ($(VGM_ENABLE_MAIATRAC3PLUS),1)
|
|
MAT3P_CC=-DVGM_USE_MAIATRAC3PLUS
|
|
MAT3P_LD=-lat3plusdecoder
|
|
endif
|
|
|
|
#MPEG_CC=-DVGM_USE_MPEG
|
|
MPEG_LD=-lmpg123-0
|
|
VGM_DISABLE_MPEG=0
|
|
ifeq ($(VGM_DISABLE_MPEG),1)
|
|
MPEG_CC=-DVGM_DISABLE_MPEG
|
|
MPEG_LD=
|
|
endif
|
|
|
|
|
|
# config
|
|
export SHELL = /bin/sh
|
|
export CFLAGS=-Wall -O3 $(MPEG_CC) -DVGM_USE_G7221 -DVGM_USE_G719 $(MAT3P_CC) $(FFMPEG_CC) -DUSE_ALLOCA -DWIN32 -I../ext_includes $(EXTRA_CFLAGS)
|
|
export LDFLAGS=-L../src -L../ext_libs -lvgmstream -lvorbis $(MPEG_LD) -lg7221_decode -lg719_decode $(MAT3P_LD) $(FFMPEG_LD) -lm $(EXTRA_LDFLAGS)
|
|
export CC=i586-mingw32msvc-gcc
|
|
export AR=i586-mingw32msvc-ar
|
|
export STRIP=i586-mingw32msvc-strip
|
|
export WINDRES=i586-mingw32msvc-windres
|
|
#export CC=i686-w64-mingw32-gcc
|
|
#export AR=i686-w64-mingw32-ar
|
|
#export STRIP=i686-w64-mingw32-strip
|
|
#export WINDRES=i686-w64-mingw32-windres
|
|
|
|
.PHONY: libvgmstream.a libvorbis.a libmpg123-0.a libg7221_decode.a libg719_decode.a libat3plusdecoder.a libavcodec.a libavformat.a libavutil.a libswresample.a
|
|
|
|
in_vgmstream.dll: libvgmstream.a libvorbis.a libmpg123-0.a libg7221_decode.a libg719_decode.a libat3plusdecoder.a libavcodec.a libavformat.a libavutil.a libswresample.a resource.o
|
|
$(CC) -shared -static-libgcc $(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 $@
|
|
|
|
libvorbis.a:
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
libmpg123-0.a:
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
libg7221_decode.a:
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
libg719_decode.a:
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
libat3plusdecoder.a:
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
libavcodec.a:
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
libavformat.a:
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
libavutil.a:
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
libswresample.a:
|
|
$(MAKE) -C ../ext_libs -f Makefile.mingw $@
|
|
|
|
clean:
|
|
rm -f in_vgmstream.dll resource.o
|