]> Joshua Wise's Git repositories - snipe.git/blob - Makefile
8829383e8760975fc37c6ed9e5d112442d030309
[snipe.git] / Makefile
1 # the following are SML-NJ specific defines
2 SML = sml
3
4 l2c: FORCE
5         echo 'use "compile-l2c.sml";' | ${SML}
6
7 clean:
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/l2c.heap.*
12
13 TAGS: clean
14         ${RM} TAGS
15         bin/create-tags *.cm *.sml */*.lex */*.grm */*.sml
16
17 FORCE: 
This page took 0.01493 seconds and 2 git commands to generate.