From 74049a450c99393912aa3e60da48f4fb7622fb95 Mon Sep 17 00:00:00 2001 From: No name Date: Mon, 20 Jul 2020 09:53:44 +0300 Subject: [PATCH] Add NNUE targets to the output of 'make help' --- src/Makefile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index cfa96694..9c9aed5c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -544,8 +544,17 @@ help: @echo "" @echo "Supported targets:" @echo "" - @echo "build > Standard build" - @echo "profile-build > PGO build" + @echo "build > Standard (without NNUE) build" + @echo "profile-build > Standard build with PGO" + @echo "nnue > NNUE-enabled build" + @echo "profile-nnue > NNUE-enabled build with PGO" + @echo "nnue-learn > Produces or refines a NNUE parameter set." + @echo " Requires training data that can be" + @echo " generated by itself using an existing" + @echo " parameter set, or with the next tool" + @echo "nnue-gen-sfen-from-original-eval" + @echo " > Produces training data for 'nnue-learn'" + @echo " > without using a NNUE parameter set" @echo "strip > Strip executable" @echo "install > Install executable" @echo "clean > Clean up"