Files
opengl-playground/Makefile
2024-08-01 11:11:44 +03:00

14 lines
125 B
Makefile

##
# OpenGL Tutorial
#
# @file
# @version 0.1
build:
g++ -o pog pog.cpp -lglfw -lGLESv2 -lm -lGL
run: build
./pog
# end