diff options
Diffstat (limited to 'emconfigure')
-rwxr-xr-x | emconfigure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emconfigure b/emconfigure new file mode 100755 index 00000000..b52d90c2 --- /dev/null +++ b/emconfigure @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +''' +This is a helper script. See emcc. +''' + +import os, sys +from tools import shared + +shared.Building.configure(sys.argv[1:]) + |