diff --git a/tools/rexm/rexm.c b/tools/rexm/rexm.c index 46c0f7d4f..6e171287a 100644 --- a/tools/rexm/rexm.c +++ b/tools/rexm/rexm.c @@ -7,6 +7,7 @@ * - add * - rename * - remove +* - build * - validate * - update * @@ -1261,20 +1262,25 @@ int main(int argc, char *argv[]) printf("////////////////////////////////////////////////////////////////////////////////////////////\n\n"); printf("USAGE:\n\n"); - printf(" > rexm help|create|add|rename|remove []\n"); + printf(" > rexm []\n"); - printf("\nOPTIONS:\n\n"); + printf("\COMMANDS:\n\n"); printf(" help : Provides command-line usage information\n"); printf(" create : Creates an empty example, from internal template\n"); printf(" add : Add existing example, category extracted from name\n"); printf(" Supported categories: core, shapes, textures, text, models\n"); printf(" rename : Rename an existing example\n"); - printf(" remove : Remove an existing example\n\n"); + printf(" remove : Remove an existing example\n"); + printf(" build : Build example for Desktop and Web platforms\n"); + printf(" validate : Validate examples collection, generates report\n"); + printf(" update : Validate and update examples collection, generates report\n\n"); printf("\nEXAMPLES:\n\n"); printf(" > rexm add shapes_custom_stars\n"); printf(" Add and updates new example provided \n\n"); printf(" > rexm rename core_basic_window core_cool_window\n"); printf(" Renames and updates example to \n\n"); + printf(" > rexm update\n"); + printf(" Validates all examples in collection and updates missing elements\n\n"); } break; }