From 009bc6cc1fc1be36b30495d2f0fff8672692fb53 Mon Sep 17 00:00:00 2001 From: SoloArchx250 Date: Thu, 4 Jun 2020 19:33:07 -0400 Subject: [PATCH] general --- .gitignore | 2 ++ Makefile | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 80efdbc..97847a8 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,5 @@ bin/* .ccls-cache/* *.gch + +vgcore.* diff --git a/Makefile b/Makefile index f35d0af..16398ce 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC = clang LINK = -lstdc++ -lSDL2 -lm -ldl -lSDL_gfx -DBG = -Wall -O3 +DBG = -Wall -g -gmodules -O0 CC += $(DBG) all: build ; @@ -37,7 +37,7 @@ build: $(goals) ; $(CC) $(goals) -o ./bin/simulator $(LINK) #bin/%.o : src/%.cpp ; - + .PHONY: clean clean: @@ -45,4 +45,4 @@ clean: .PHONY: run run: build ; - ./bin/simulator \ No newline at end of file + ./bin/simulator