From cc89c8cbc513c9744a371c3b787e9a8832bfa724 Mon Sep 17 00:00:00 2001 From: CrispyPin Date: Sat, 22 Apr 2023 19:21:56 +0200 Subject: [PATCH] rename executable --- .gitignore | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0c01b56..f1bf125 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -overlay +sinpin_vr .vscode/ diff --git a/Makefile b/Makefile index 926840c..f92c71e 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CC := clang++ LFLAGS := -lX11 -lXrandr -lglfw -lGL LIBS := openvr/libopenvr_api.so SRC := src/*.cpp -OUT := ./overlay +OUT := ./sinpin_vr CPPFLAGS := -Wall -std=c++17 $(LFLAGS) $(LIBS) $(SRC) -o $(OUT) build: @@ -14,5 +14,5 @@ release: $(CC) $(CPPFLAGS) run: build - ./overlay + $(OUT)