Rename draw.* to gl_draw.*

This commit is contained in:
hasufell 2014-05-08 22:54:54 +02:00
parent 9fedbc4c37
commit 8f2ca02cd6
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
4 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

View File

2
main.c
View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "draw.h"
#include "gl_draw.h"
#include "filereader.h"
#include "print.h"
#include "types.h"