From 5d3dfa1f3eda7a6ff479914d817fbe4c3aa0e0c5 Mon Sep 17 00:00:00 2001 From: LinlyBoi Date: Thu, 1 Aug 2024 11:15:57 +0300 Subject: [PATCH] modifying the output location --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f1d291c..9c37f7b 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,9 @@ # @version 0.1 build: - g++ -o pog pog.cpp -lglfw -lGLESv2 -lm -lGL + g++ -o ./out/pog pog.cpp -lglfw -lGLESv2 -lm -lGL run: build - ./pog + ./out/pog # end