From d220793b2d9c299360f0156eb2775064397ded4d Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Sun, 24 May 2026 10:13:07 +0530 Subject: [PATCH] fix: binary rename fr fr --- .gitignore | 3 +++ Makefile | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7eb196d..368ac9a 100644 --- a/.gitignore +++ b/.gitignore @@ -51,6 +51,9 @@ Module.symvers Mkfile.old dkms.conf +build/ +dist/ + pkg/ # debug information files diff --git a/Makefile b/Makefile index 3de50d0..e693006 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ BUILD_TARGET := $(BUILD_DIR)/gsplash PKG_TOP ?= pkg/gsplash-git PKG_DIR := $(PKG_TOP)/usr BIN_DIR := $(PKG_DIR)/bin -PKG_TARGET := $(BIN_DIR)/game-splash +PKG_TARGET := $(BIN_DIR)/gsplash # Installation Paths (Defaults to user local bin) PREFIX ?= /usr/local @@ -61,7 +61,7 @@ check: $(BUILD_TARGET) SDL_VIDEODRIVER=dummy $(BUILD_TARGET) nonexistent.png /bin/true || true @echo "Smoke test finished" -# Install binary system-wide (installs as game-splash) +# Install binary system-wide (installs as gsplash) install: $(BUILD_TARGET) install -Dm755 $(BUILD_TARGET) $(DESTDIR)$(PREFIX)/bin/$(notdir $(PKG_TARGET))