From f1419269b92a4f27bee9a3a4e05b8dedeac8484e Mon Sep 17 00:00:00 2001 From: anon Date: Mon, 7 Aug 2023 16:08:42 +0200 Subject: [PATCH] make help target --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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