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