dropped all dependencies apart from SDL into the libs subdir
[summerhack] / libs / ogg / Makefile
diff --git a/libs/ogg/Makefile b/libs/ogg/Makefile
new file mode 100644 (file)
index 0000000..352cef6
--- /dev/null
@@ -0,0 +1,12 @@
+obj = bitwise.o framing.o
+
+liba = ../libogg.a
+
+CFLAGS = -O3
+
+$(liba): $(obj)
+       $(AR) rcs $@ $(obj)
+
+.PHONY: clean
+clean:
+       rm -f $(obj) $(liba)