2008-03-10 19:20:40 +00:00
|
|
|
export SHELL = /bin/sh
|
2015-05-16 15:30:15 -07:00
|
|
|
export CFLAGS=-Wall -O3 -I../ext_includes -DUSE_ALLOCA -DVGM_USE_MAIATRAC3PLUS
|
|
|
|
# -DVGM_USE_G7221 -DVGM_USE_G719
|
|
|
|
export LDFLAGS=-L../src -L ../ext_libs -lvgmstream -lvorbisfile -lmpg123 -lat3plusdecoder -lpthread -lm
|
|
|
|
#-lg719_decode -lg7221_decode -lsiren_decode
|
2015-01-21 19:28:43 -05:00
|
|
|
export CC=gcc
|
|
|
|
export AR=ar
|
2008-03-14 13:11:14 +00:00
|
|
|
export STRIP=strip
|
2008-01-31 06:15:03 +00:00
|
|
|
|
2008-06-15 11:24:09 +00:00
|
|
|
.PHONY: libvgmstream.a
|
2008-01-31 06:15:03 +00:00
|
|
|
|
2015-01-21 19:28:43 -05:00
|
|
|
test.exe: libvgmstream.a
|
2015-05-16 15:30:15 -07:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) "-DVERSION=\"`../version.sh`\"" test.c $(LDFLAGS) -o vgmstream
|
|
|
|
$(STRIP) vgmstream
|
2008-03-25 07:25:46 +00:00
|
|
|
|
2008-03-10 19:20:40 +00:00
|
|
|
libvgmstream.a:
|
2015-01-21 19:28:43 -05:00
|
|
|
$(MAKE) -C ../src $@
|
2008-02-06 00:27:51 +00:00
|
|
|
|
2008-01-31 06:15:03 +00:00
|
|
|
clean:
|
2008-03-25 07:42:43 +00:00
|
|
|
rm -f test test.o
|