X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=libs%2Fdrawtext%2FGNUmakefile;fp=libs%2Fdrawtext%2FGNUmakefile;h=996cfd2566c4cc1fb13d530f8ec4750a93708478;hb=8e0d640fcb4dfee7cea3d1f79f7854f5e75cf4c0;hp=0000000000000000000000000000000000000000;hpb=070c37ff23e40cc9ca992f25af41e4cbdcb28add;p=retroray diff --git a/libs/drawtext/GNUmakefile b/libs/drawtext/GNUmakefile new file mode 100644 index 0000000..996cfd2 --- /dev/null +++ b/libs/drawtext/GNUmakefile @@ -0,0 +1,14 @@ +obj = font.o draw.o drawgl.o drawrast.o utf8.o +alib = ../unix/drawtext.a + +CFLAGS = -O3 -g -DNO_FREETYPE -DNO_OPENGL + +$(alib): $(obj) + $(AR) rcs $@ $(obj) + +.c.o: + $(CC) $(CFLAGS) -c $< -o $@ + +.PHONY: clean +clean: + rm -f $(obj) $(alib)