2008-03-10 20:20:40 +01:00
|
|
|
export SHELL = /bin/sh
|
2008-08-02 12:24:28 +02:00
|
|
|
export CFLAGS=-Wall -ggdb
|
2008-07-05 13:49:29 +02:00
|
|
|
export LDFLAGS=-lm -L../src -lvgmstream -lvorbisfile -lmpg123
|
2008-03-14 14:11:14 +01:00
|
|
|
export STRIP=strip
|
2008-01-31 07:15:03 +01:00
|
|
|
|
2008-06-15 13:24:09 +02:00
|
|
|
.PHONY: libvgmstream.a
|
2008-01-31 07:15:03 +01:00
|
|
|
|
2008-03-25 08:25:46 +01:00
|
|
|
test: libvgmstream.a test.o
|
2008-05-06 04:58:29 +02:00
|
|
|
$(CC) test.o $(LDFLAGS) $(CFLAGS) -o test
|
2008-03-10 20:20:40 +01:00
|
|
|
|
2008-05-05 00:02:37 +02:00
|
|
|
test.o: test.c
|
2008-03-25 08:25:46 +01:00
|
|
|
$(CC) $(CFLAGS) -c "-DVERSION=\"`../version.sh`\"" test.c -o test.o
|
|
|
|
|
2008-03-10 20:20:40 +01:00
|
|
|
libvgmstream.a:
|
|
|
|
$(MAKE) -C ../src libvgmstream.a
|
2008-02-06 01:27:51 +01:00
|
|
|
|
2008-01-31 07:15:03 +01:00
|
|
|
clean:
|
2008-03-25 08:42:43 +01:00
|
|
|
rm -f test test.o
|