From 459e54ac227128d4980ee40293b4b9fdd7b8ef26 Mon Sep 17 00:00:00 2001 From: Joshua Wise Date: Wed, 13 May 2009 22:47:28 -0400 Subject: [PATCH] Rename output binary from l5c to snipe --- Makefile | 12 ++++++------ bin/{l5c => snipe} | 0 compile-l5c.sml => compile-snipe.sml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) rename bin/{l5c => snipe} (100%) rename compile-l5c.sml => compile-snipe.sml (71%) diff --git a/Makefile b/Makefile index 2ae3db6..5e216f0 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ # the following are SML-NJ specific defines SML = sml -l5c: FORCE - echo 'use "compile-l5c.sml";' | ${SML} +snipe: FORCE + echo 'use "compile-snipe.sml";' | ${SML} -l5c-mlton: FORCE +snipe-mlton: FORCE mllex parse/l5.lex mlyacc parse/l5.grm - mlton -profile time -profile-branch true -output bin/l5c-mlton sources.mlb + mlton -verbose 2 -output bin/snipe-mlton sources.mlb ${RM} parse/l5.lex.sml reallyclean: clean @@ -17,8 +17,8 @@ reallyclean: clean clean: find . -type d -name .cm | xargs rm -rf find . -type f | grep '~$$' | xargs ${RM} - ${RM} bin/l5c.heap.* - ${RM} bin/l5c-mlton + ${RM} bin/snipe.heap.* + ${RM} bin/snipe-mlton TAGS: clean diff --git a/bin/l5c b/bin/snipe similarity index 100% rename from bin/l5c rename to bin/snipe diff --git a/compile-l5c.sml b/compile-snipe.sml similarity index 71% rename from compile-l5c.sml rename to compile-snipe.sml index f5af6ed..04e0247 100644 --- a/compile-l5c.sml +++ b/compile-snipe.sml @@ -4,4 +4,4 @@ *) CM.make "sources.cm"; -SMLofNJ.exportFn ("bin/l5c.heap", Top.main); +SMLofNJ.exportFn ("bin/snipe.heap", Top.main); -- 2.39.2