aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-05-16 17:03:33 +0200
committerlonkaars <loek@pipeframe.xyz>2024-05-16 17:03:33 +0200
commitc0a4cd2aa8dce443a7d54232cada0ee57cdec463 (patch)
treee559b7e0ef46627957426a685dcd376cc96c8d94 /makefile
parent548fcede95d44a3486e43f24302809792754861a (diff)
WIP fragment shader demo
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/makefile b/makefile
index 539ac68..42f4e1a 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,8 @@
LDFLAGS += -lglfw
LDFLAGS += -lOpenGL
+LDFLAGS += -lGLEW
+
+CFLAGS += -g
.PHONY: FORCE
@@ -7,7 +10,7 @@ all: main FORCE
main: main.o
main: die.o
-main: draw.o
+main: shader.o
main: hello_frag.o
main: hello_vert.o