# 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
 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