From 8f2ca02cd62b4b2fcdbe22b1e8af357b301c35df Mon Sep 17 00:00:00 2001 From: hasufell Date: Thu, 8 May 2014 22:54:54 +0200 Subject: [PATCH] Rename draw.* to gl_draw.* --- Makefile | 4 ++-- draw.c => gl_draw.c | 0 draw.h => gl_draw.h | 0 main.c | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename draw.c => gl_draw.c (100%) rename draw.h => gl_draw.h (100%) diff --git a/Makefile b/Makefile index 547f69e..09ceb2c 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ CFLAGS += -O0 -g3 endif TARGET = drow-engine -HEADERS = err.h parser.h types.h print.h filereader.h draw.h -OBJECTS = main.o parser.o print.o filereader.o draw.c +HEADERS = err.h parser.h types.h print.h filereader.h gl_draw.h +OBJECTS = main.o parser.o print.o filereader.o gl_draw.c INCS = -I. CFLAGS += $(shell $(PKG_CONFIG) --cflags gl glu glib-2.0) diff --git a/draw.c b/gl_draw.c similarity index 100% rename from draw.c rename to gl_draw.c diff --git a/draw.h b/gl_draw.h similarity index 100% rename from draw.h rename to gl_draw.h diff --git a/main.c b/main.c index c35a425..fbcc4f8 100644 --- a/main.c +++ b/main.c @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -#include "draw.h" +#include "gl_draw.h" #include "filereader.h" #include "print.h" #include "types.h"