From 8c583a60283e49e86a2da29a0d6dacaeac4d2ada Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Sun, 19 Apr 2026 17:43:38 +0000 Subject: [PATCH] Makefile: expand CXXFLAGS continuation tabs to 4-space indentation Convert alignment tabs in CXXFLAGS continuation lines to 4-space indentation for consistency. Recipe lines retain tabs (required by Make). --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index e0d2ff0..b2ac09b 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ # Compiler and flags CXX = g++ CXXFLAGS = -Wall -Wextra -g -ggdb3 -std=c++14 \ - -I./src \ - -isystem./ext/tomlc17/src \ - -isystem./ext/raylib/src \ - -isystem./ext/raygui/src \ - -isystem./ext/raygui/styles + -I./src \ + -isystem./ext/tomlc17/src \ + -isystem./ext/raylib/src \ + -isystem./ext/raygui/src \ + -isystem./ext/raygui/styles LDFLAGS = -L./ext/raylib/src -lraylib -lm -lpthread -ldl -lrt -lX11 # Directories