X-Git-Url: http://git.joshuawise.com/snipe.git/blobdiff_plain/1144856ba9d6018d9922c6ede7e97779a0fe6373..c148fe943397f2ec0ea1f9b6784a217213ff54c1:/Makefile

diff --git a/Makefile b/Makefile
index 2cb4352..5e216f0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
 # the following are SML-NJ specific defines
 SML = sml
 
-l4c: FORCE
-	echo 'use "compile-l4c.sml";' | ${SML}
+snipe: FORCE
+	echo 'use "compile-snipe.sml";' | ${SML}
 
-l4c-mlton: FORCE
-	mllex parse/l4.lex
-	mlyacc parse/l4.grm
-	mlton -output bin/l4c-mlton sources.mlb
-	${RM} parse/l4.lex.sml
+snipe-mlton: FORCE
+	mllex parse/l5.lex
+	mlyacc parse/l5.grm
+	mlton -verbose 2 -output bin/snipe-mlton sources.mlb
+	${RM} parse/l5.lex.sml
 
 reallyclean: clean
 	${RM} parse/*.lex.* parse/*.grm.*
@@ -17,8 +17,8 @@ reallyclean: clean
 clean:
 	find . -type d -name .cm | xargs rm -rf
 	find . -type f | grep '~$$' | xargs ${RM}
-	${RM} bin/l4c.heap.*
-	${RM} bin/l4c-mlton
+	${RM} bin/snipe.heap.*
+	${RM} bin/snipe-mlton
 
 
 TAGS: clean