From: Jean Privat Date: Thu, 11 Dec 2014 02:32:13 +0000 (-0500) Subject: src: rename nitg to nitc X-Git-Tag: v0.7~51^2~9 X-Git-Url: http://nitlanguage.org src: rename nitg to nitc Signed-off-by: Jean Privat --- diff --git a/src/compiler/abstract_compiler.nit b/src/compiler/abstract_compiler.nit index 6329dac..caf6622 100644 --- a/src/compiler/abstract_compiler.nit +++ b/src/compiler/abstract_compiler.nit @@ -3067,7 +3067,7 @@ end # Create a tool context to handle options and paths var toolcontext = new ToolContext -toolcontext.tooldescription = "Usage: nitg [OPTION]... file.nit...\nCompiles Nit programs." +toolcontext.tooldescription = "Usage: nitc [OPTION]... file.nit...\nCompiles Nit programs." # We do not add other options, so process them now! toolcontext.process_options(args) diff --git a/src/nitg.nit b/src/nitc.nit similarity index 96% rename from src/nitg.nit rename to src/nitc.nit index 69b99f0..cab5638 100644 --- a/src/nitg.nit +++ b/src/nitc.nit @@ -14,8 +14,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -# A global Nit compiler -module nitg +# A Nit compiler +module nitc import frontend import compiler