]> Joshua Wise's Git repositories - snipe.git/blame - Makefile
Initial import of l2c
[snipe.git] / Makefile
CommitLineData
12aa4087
JW
1# the following are SML-NJ specific defines
2SML = sml
3
0a24e44d
JW
4l2c: FORCE
5 echo 'use "compile-l2c.sml";' | ${SML}
12aa4087
JW
6
7clean:
8 find . -type d -name .cm | xargs rm -rf
9 ${RM} parse/*.lex.* parse/*.grm.*
10 find . -type f | grep '~$$' | xargs ${RM}
0a24e44d 11 ${RM} bin/l2c.heap.*
12aa4087
JW
12
13TAGS: clean
14 ${RM} TAGS
15 bin/create-tags *.cm *.sml */*.lex */*.grm */*.sml
16
17FORCE:
This page took 0.024349 seconds and 4 git commands to generate.