]> git.lizzy.rs Git - shadowclad.git/commitdiff
Exclude debugutil from build
authoroutfrost <kotlet.bahn@gmail.com>
Mon, 28 Jan 2019 20:03:14 +0000 (21:03 +0100)
committeroutfrost <kotlet.bahn@gmail.com>
Mon, 28 Jan 2019 20:03:14 +0000 (21:03 +0100)
Makefile
main.c

index 668f3770558579304e301f5e57abaf4c1e921c26..8e44c7e8038faca9a55ea5f5e11c9ae01d7b7347 100644 (file)
--- 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 9cd2a99d753678c43073fe8eaefc74fbe3dc905b..a64ca14ab11f6cf24647328d3f3c7ef59da29999 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1,7 +1,7 @@
 #include <GL/glxew.h>
 #include <GL/glut.h>
 
-#include "debugutil.h"
+//#include "debugutil.h"
 #include "level.h"
 #include "logger.h"
 #include "performance.h"