
all:
	g++ simple_demo.cpp  -lGL -lm -lglfw -lGLEW

clean:
	rm a.out

test: all
	./a.out
	
