From e96de0d768b442e52a00cc4dc43c75701e83223e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?b=CA=B0edoh=E2=82=82=20sw=C3=A9?= Date: Sat, 29 Mar 2025 18:25:27 +0500 Subject: [PATCH] Allow non GNU make. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8bc2ec0..695cb26 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ SRCS=src/main.c src/gamepad.c src/panic.c all: poormansgamepad poormansgamepad: $(SRCS) - $(CC) $^ -O2 -Wall -Wpedantic $(CFLAGS) -o poormansgamepad + $(CC) $(SRCS) -O2 -Wall -Wpedantic $(CFLAGS) -o poormansgamepad clean: - $(RM) poormansgamepad + rm -f poormansgamepad