make help target

This commit is contained in:
anon 2023-08-07 16:08:42 +02:00
parent 937e2536f0
commit f1419269b9

View File

@ -1,5 +1,6 @@
# note that this file does not properly handle options
PROGN:=probotic
CFLAGS:=-std=c99 -Wall -Wextra -Wpedantic -Wvla -Wshadow -Wundef
@ -44,4 +45,10 @@ submodules:
clean:
-rm ${OBJ}
.PHONY: submodules clean
help:
@echo "Targets:"
@echo " all (default)"
@echo " submodules"
@echo " clean"
.PHONY: submodules clean help