14 lines
135 B
Makefile
14 lines
135 B
Makefile
##
|
|
# OpenGL Tutorial
|
|
#
|
|
# @file
|
|
# @version 0.1
|
|
|
|
build:
|
|
g++ -o ./out/pog pog.cpp -lglfw -lGLESv2 -lm -lGL
|
|
run: build
|
|
./out/pog
|
|
|
|
|
|
# end
|