This is my first c++ program, and also my first time creating a Makefile so im very unfamiliar with it all.
I have my main file raytracer.cpp that includes the glm library like this:
#include "glm/glm.hpp"
raytracer.cpp and the glm directory are in the the same directory.
How can I create a makefile for this project?
The glm library is a header only library. So do I have to compile all the files in the glm directory? Or just the glm.hpp?