From 15f12be7e4789929209136f1d0f40fb234981138 Mon Sep 17 00:00:00 2001 From: HuntedByTheIRS Date: Thu, 2 Jul 2026 02:25:06 -0400 Subject: [PATCH] Add a cool ass logo :) --- LOGO | 11 +++++++++++ Makefile | 3 +++ 2 files changed, 14 insertions(+) create mode 100644 LOGO diff --git a/LOGO b/LOGO new file mode 100644 index 0000000..1175e52 --- /dev/null +++ b/LOGO @@ -0,0 +1,11 @@ + ███████████ █████ █████ ███ █████ ██████ ██████ +▒▒███▒▒▒▒▒███ ▒▒███ ▒▒███ ▒███ ▒▒███ ▒▒██████ ██████ + ▒███ ▒███ ██████ ██████ ██████ ▒███████ ▒███ ▒███ ▒███ ▒███▒█████▒███ + ▒██████████ ███▒▒███ ▒▒▒▒▒███ ███▒▒███ ▒███▒▒███ ▒███ ▒███ ▒███ ▒███▒▒███ ▒███ + ▒███▒▒▒▒▒▒ ▒███████ ███████ ▒███ ▒▒▒ ▒███ ▒███ ▒▒███ █████ ███ ▒███ ▒▒▒ ▒███ + ▒███ ▒███▒▒▒ ███▒▒███ ▒███ ███ ▒███ ▒███ ▒▒▒█████▒█████▒ ▒███ ▒███ + █████ ▒▒██████ ▒▒████████▒▒██████ ████ █████ ▒▒███ ▒▒███ █████ █████ +▒▒▒▒▒ ▒▒▒▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ + + + diff --git a/Makefile b/Makefile index 6654469..44c3fe3 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,9 @@ VERSION = `git describe --tags --dirty 2>/dev/null || echo 0.2` PREFIX = /usr/local PKG_CONFIG = pkg-config +# Print logo on every make invocation +$(info $(file < LOGO)) + # Auto-detect compiler: TCC > Clang > GCC (only if CC not set) ifeq ($(origin CC),default) ifeq ($(shell which tcc 2>/dev/null),)