vgmstream/test/Makefile
halleyscometsw 4aec626083 clean up build process a bit
git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@40 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
2008-03-10 19:20:40 +00:00

15 lines
247 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
libvgmstream.a:
$(MAKE) -C ../src libvgmstream.a
clean:
rm -f test