aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 23:36:23 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 23:36:23 -0400
commitefec4f7b42b12d4765da5a886fcf2c5279c8caaf (patch)
tree47e680a580eafd4dd3f6c914d5e259eab841b0d0 /Makefile
parent0deab6b6e5c9963cf3f3f1ab8043d0eb80cffff7 (diff)
Makefile updated to support OpenGL and GLEW
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ce5b043..79c55b9 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@ OBJEXT = o
DEPEXT = d
LIBDIR = lib
-LIBS = -L$(LIBDIR) -lSDL2 -lpthread -lentityx -ldl -lluajit
+LIBS = -L$(LIBDIR) -lSDL2 -lpthread -lentityx -ldl -lluajit -lGLEW -lGL
CXXFLAGS = -ggdb -std=c++17 -Wall -Wextra -Werror -pedantic
@@ -63,7 +63,7 @@ clean:
@$(RM) -rf $(OUTDIR)
cleaner: clean
- @$(RM) -rf $(EXECDIR)
+#@$(RM) -rf $(EXECDIR)
$(EXEC): $(CXXOBJ)
@echo " CXX " $(EXEC)