diff --git a/Makefile b/Makefile index 8def37b..ba19d8e 100644 --- a/Makefile +++ b/Makefile @@ -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