X-Git-Url: http://git.joshuawise.com/snipe.git/blobdiff_plain/6ade8b0a3251e44b34c6bdbbd9403e36d6fd6231..refs/heads/blargcpu:/Makefile?ds=sidebyside

diff --git a/Makefile b/Makefile
index 88508a2..5e216f0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,23 +1,24 @@
 # the following are SML-NJ specific defines
 SML = sml
 
-l3c: FORCE
-	echo 'use "compile-l3c.sml";' | ${SML}
+snipe: FORCE
+	echo 'use "compile-snipe.sml";' | ${SML}
 
-l3c-mlton: FORCE
-	mllex parse/l3.lex
-	mlyacc parse/l3.grm
-	mlton -output bin/l3c-mlton sources.mlb
-	${RM} parse/l3.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.*
+	find . -type f -name '*~' | xargs rm -rf
 
 clean:
 	find . -type d -name .cm | xargs rm -rf
 	find . -type f | grep '~$$' | xargs ${RM}
-	${RM} bin/l3c.heap.*
-	${RM} bin/l3c-mlton
+	${RM} bin/snipe.heap.*
+	${RM} bin/snipe-mlton
 
 
 TAGS: clean