the begining

This commit is contained in:
2024-08-01 11:11:44 +03:00
commit cf34a3dda6
2 changed files with 46 additions and 0 deletions

13
Makefile Normal file
View File

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