Allow non GNU make.

This commit is contained in:
bʰedoh₂ swé 2025-03-29 18:25:27 +05:00
parent 2c06e30444
commit e96de0d768

View File

@ -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