diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3347607 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +GLEW_LIBS=$(pkgconf glew --libs) +GLFW_LIBS=$(pkgconf glfw3 --libs) + +cg1: main.c + gcc -o cg1 src/main.c src/log.c src/shader.c $(GLEW_LIBS) $(GLFW_LIBS) \ No newline at end of file