dropped all dependencies apart from SDL into the libs subdir
[summerhack] / libs / ogg / Makefile
1 obj = bitwise.o framing.o
2
3 liba = ../libogg.a
4
5 CFLAGS = -O3
6
7 $(liba): $(obj)
8         $(AR) rcs $@ $(obj)
9
10 .PHONY: clean
11 clean:
12         rm -f $(obj) $(liba)