mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-24 23:10:10 +01:00
4aec626083
git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@40 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
15 lines
247 B
Makefile
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
|