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