vgmstream/test/Makefile
halleyscometsw f9ed4332f4 make things easier (PUN)
git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@49 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
2008-03-11 05:40:29 +00:00

16 lines
262 B
Makefile

export SHELL = /bin/sh
export CFLAGS=-Wall -O3
export LDFLAGS=-lm -L../src -lvgmstream
.PHONY: libvgmstream.a
test: libvgmstream.a
$(CC) $(CFLAGS) test.c $(LDFLAGS) -o test
$(STRIP) test
libvgmstream.a:
$(MAKE) -C ../src libvgmstream.a
clean:
rm -f test