# Makefile for creating an executable version of the parser.

# The following line should give the name you use to invoke Standard ML of
# New Jersey in your system. Ideally the noshare version should be used,
# which will give you a far smaller executable.

SML = sml -noshare

parse: ; $(SML) < parser.sml

clean: ; rm parse
