Unify "script" and "project" under "util".

This commit is contained in:
Bob Nystrom
2015-09-22 07:45:58 -07:00
parent 2f9ba2beaa
commit 36f7d74183
17 changed files with 29 additions and 182 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
The Wren scripts in this directory get converted to C string literals into files
with a `.wren.inc` extension. Those are then `#includ`ed into their respective
with a `.wren.inc` extension. Those are then `#include`d into their respective
`.c` files so that the interpreter can load them directly without having to do
any file IO.
The script that does this translation is `script/wren_to_c_string.py`.
The script that does this translation is `util/wren_to_c_string.py`.
When any of the ".wren" files in here are changed, the Makefile automatically
updates the generated C headers.