blob: daa5c21deb2fe581f08304ccff2fed17a1ddd9c7 (
plain)
1
2
3
4
5
6
7
8
9
|
default: rules.js play.js
rules.js: events.txt
sed '/const CODE /,$$d' < rules.js > /tmp/rules.js
node tools/gencode.js >> /tmp/rules.js
cp /tmp/rules.js rules.js
play.js: tools/layout.svg
sed '/var LAYOUT /,$$d' < play.js > /tmp/play.js
node tools/genlayout.js >> /tmp/play.js
cp /tmp/play.js play.js
|