From 4c00cd65666d684f9e025ad3a180ce3f12612301 Mon Sep 17 00:00:00 2001 From: outfrost Date: Mon, 28 Jan 2019 21:03:14 +0100 Subject: [PATCH] Exclude debugutil from build --- Makefile | 2 +- main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 668f377..8e44c7e 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ LDLIBS ::= -L/usr/local/lib -lGL -lGLEW -lglut -lassimp $(LDLIBS) # Prefix all object file names with the compilation directory objects ::= $(addprefix out/, \ - main.o debugutil.o level.o logger.o \ + main.o level.o logger.o \ performance.o render.o tga.o ui.o) # Set executable extension for the platform diff --git a/main.c b/main.c index 9cd2a99..a64ca14 100644 --- a/main.c +++ b/main.c @@ -1,7 +1,7 @@ #include #include -#include "debugutil.h" +//#include "debugutil.h" #include "level.h" #include "logger.h" #include "performance.h" -- 2.44.0