From 6232cc58ad9885400f4c4fa8808c8f1521371637 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Fri, 4 Feb 2022 23:51:42 +0300 Subject: [PATCH] made the make docs a bit more friendly... Signed-off-by: Alex A. Naanou --- Viewer/Makefile | 14 ++++++++++++-- Viewer/doc/MAKE | 14 ++++++++++++-- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/Viewer/Makefile b/Viewer/Makefile index 52dcaf77..b6222b49 100755 --- a/Viewer/Makefile +++ b/Viewer/Makefile @@ -37,8 +37,14 @@ # - web # # -## To print full list of user make targets use: -## $$ make help +## To check for buld/development dependencies that make can't install itself: +## $$ make check +## +## To setup the development environment: +## $$ make dev +## +## To do a default build use: +## $$ make dist ## ## In some cases making things directly starting from a clean directory ## may either fail or use global version of a utility instead of the @@ -48,6 +54,10 @@ ## ... ## $$ make dist ## +## To print full list of user make targets use: +## $$ make help +## +## ## Variables to control the build: ## APP_NAME - Application name ## APP_BIN - App binary name (ignored for MacOS) diff --git a/Viewer/doc/MAKE b/Viewer/doc/MAKE index 2b551307..082cf52e 100644 --- a/Viewer/doc/MAKE +++ b/Viewer/doc/MAKE @@ -1,8 +1,14 @@ ImageGrid.Viewer Makefile... -To print full list of user make targets use: - $ make help +To check for buld/development dependencies that make can't install itself: + $ make check + +To setup the development environment: + $ make dev + +To do a default build use: + $ make dist In some cases making things directly starting from a clean directory may either fail or use global version of a utility instead of the @@ -12,6 +18,10 @@ environment and then try again: ... $ make dist +To print full list of user make targets use: + $ make help + + Variables to control the build: APP_NAME - Application name APP_BIN - App binary name (ignored for MacOS)