From 1e224702a3c8fc049309e63a8887fc921467cebf Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 31 Aug 2025 14:21:55 +0100 Subject: [PATCH] Add default target as one of the available targets when make help is run --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 8de903f..03bc0e6 100644 --- a/Makefile +++ b/Makefile @@ -57,6 +57,7 @@ help: @echo " INSTALL_PREFIX Prefix where library and include files will be installed." @echo @echo "Available targets:" + @echo " make Build, install and test the full wapp library." @echo " make full Build and install the full wapp library." @echo " make core Build and install only the \`core\` component of the wapp library with all its dependencies." @echo " make prng Build and install only the \`prng\` component of the wapp library with all its dependencies."