From 26b9f3de0ffe471e5335b07454147457e373c037 Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Wed, 30 Jun 2010 01:36:15 +0100 Subject: libdraw now has own repo --- draw/Makefile | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 draw/Makefile (limited to 'draw/Makefile') diff --git a/draw/Makefile b/draw/Makefile deleted file mode 100644 index 4b39490..0000000 --- a/draw/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# libdraw - dynamic drawing library -# See LICENSE file for copyright and license details. - -include ../config.mk - -SRC = cleanupdraw.c drawsquare.c drawtext.c eprint.c getcolor.c initfont.c \ -setupdraw.c textnw.c textw.c -OBJ = ${SRC:.c=.o} - -all: libdraw.a - -.c.o: - @echo CC $< - @${CC} -c ${CFLAGS} $< - -${OBJ}: ../config.mk draw.h - -libdraw.a: ${OBJ} - @echo AR $@ - @ar cr $@ $+ - -clean: - @echo cleaning libdraw - @rm -f libdraw.a ${OBJ} - -.PHONY: all options clean -- cgit v1.2.3-54-g00ecf