commit 48e702d18b50774e191c98854c93b0ed5ba11aa4 parent 6fd1c10366b2182de5d6027fcbfdea882a9a3a19 Author: Michael Savage <mikejsavage@gmail.com> Date: Thu Jul 23 22:10:35 +0200 Compile with debugging information Diffstat:
Makefile | | | 2 | +- |
diff --git a/Makefile b/Makefile @@ -3,7 +3,7 @@ all: bsp SRCS = bsp.cc bsp_renderer.cc gl.cc OBJS := $(patsubst %.cc,%.o,$(SRCS)) -CXXFLAGS += -std=c++11 -O2 -Wall -Wextra +CXXFLAGS += -std=c++11 -O2 -Wall -Wextra -ggdb3 LDFLAGS += -lm -lGL -lglfw LDFLAGS += -lGLU