oops, left debug stuff in test Makefile

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@228 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-06-15 04:04:19 +00:00
parent de2e30bea3
commit 54e6924113

View File

@ -1,5 +1,5 @@
export SHELL = /bin/sh
export CFLAGS=-Wall -ggdb
export CFLAGS=-Wall -O3
export LDFLAGS=-lm -L../src -lvgmstream -lvorbisfile
export STRIP=strip
@ -7,6 +7,7 @@ export STRIP=strip
test: libvgmstream.a test.o
$(CC) test.o $(LDFLAGS) $(CFLAGS) -o test
$(STRIP) test
test.o: test.c
$(CC) $(CFLAGS) -c "-DVERSION=\"`../version.sh`\"" test.c -o test.o