aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--cRender.h3
2 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f0491de..a91b1d8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC = /usr/bin/g++
-CFLAGS = -Wall -g -std=c++11 -Werror=missing-prototypes
+CFLAGS = -Wall -g -std=c++11
LDFLAGS =
OUTPUT = Engine
BUILDDIR = build
@@ -25,7 +25,7 @@ all: clean debug
.PHONY: clean
clean:
- rm -df $(BUILDDIR)/$(OUTPUT) *.o version.h
+ rm -df $(BUILDDIR)/$(OUTPUT) $(OBJ) version.h
run: debug
./$(BUILDDIR)/$(OUTPUT)
diff --git a/cRender.h b/cRender.h
index 2fa6de1..d481bf2 100644
--- a/cRender.h
+++ b/cRender.h
@@ -4,13 +4,10 @@
#include <stdio.h>
#include <string>
#include <cmath>
-//#include <math.h>
-//#include <iostream>
#include <termios.h>
#ifdef __linux__
#include <unistd.h>
- //#include <term.h>
#include <sys/ioctl.h>
typedef int WORD;