diff options
author | jvech <jmvalenciae@unal.edu.co> | 2022-08-19 10:08:09 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2022-08-19 10:08:09 -0500 |
commit | 3bad7358dc55a969aec23bb5a5932c072d4beedd (patch) | |
tree | e4685599e1c433300bbf6f734e4fbff2597eda0b /Makefile | |
parent | ebb66ddbb17a3b82f7632a07fa4db60223b9e55a (diff) |
feat: vertex and fragment shader loader implemented
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ CFLAGS := -Wall -Wall -pedantic -std=c11 DLIBS := $(shell pkg-config --libs glfw3 opengl glew) OBJDIR = objs SRCDIR = src -OBJS = $(addprefix objs/,main.o) +OBJS = $(addprefix objs/,main.o shader.o) BIN = mverse all: build |