From: Michael D. Lowis Date: Fri, 24 Oct 2014 20:43:16 +0000 (-0400) Subject: Added an option for enabling verbose status messages X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=e408a7626b03a2b64ee6c31dc74aca213b5cea4f;p=proto%2Fsclpl.git Added an option for enabling verbose status messages --- diff --git a/source/sclpl/main.c b/source/sclpl/main.c index 930d793..17b3606 100644 --- a/source/sclpl/main.c +++ b/source/sclpl/main.c @@ -23,9 +23,8 @@ opts_cfg_t Options_Config[] = { {"staticlib", false, "mode", "Compile the application as a static library"}, {"sharedlib", false, "mode", "Compile the application as a shared library"}, {"program", false, "mode", "Compile the application as an executable"}, - {"entry", true, "entry", "Specify the module that contains the entry point for the executable"}, - {"e", true, "entry", "Specify the module that contains the entry point for the executable"}, - {"R", true, "include", "Add a path to the list of require paths"}, + {"verbose", false, "verbose", "Enable verbose status messages"}, + {"v", false, "verbose", "Enable verbose status messages"}, {NULL, false, NULL, NULL } };