added a bunch of libraries
[vrlugburz] / libs / drawtext / Makefile
diff --git a/libs/drawtext/Makefile b/libs/drawtext/Makefile
new file mode 100644 (file)
index 0000000..37d3818
--- /dev/null
@@ -0,0 +1,12 @@
+obj = font.o draw.o drawgl.o drawrast.o utf8.o
+name = libdrawtext
+lib_a = $(name).a
+
+CFLAGS = -pedantic -Wall -O3 -DNO_FREETYPE -fcommon
+
+$(lib_a): $(obj)
+       $(AR) rcs $@ $(obj)
+
+.PHONY: clean
+clean:
+       rm -f $(obj) $(lib_a)