# the following are SML-NJ specific defines
SML = sml

snipe: FORCE
	echo 'use "compile-snipe.sml";' | ${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/snipe.heap.*
	${RM} bin/snipe-mlton


TAGS: clean
	${RM} TAGS
	bin/create-tags *.cm *.sml */*.lex */*.grm */*.sml

FORCE: