aboutsummaryrefslogtreecommitdiff
path: root/emcmake
diff options
context:
space:
mode:
Diffstat (limited to 'emcmake')
-rwxr-xr-xemcmake8
1 files changed, 8 insertions, 0 deletions
diff --git a/emcmake b/emcmake
new file mode 100755
index 00000000..9617ace5
--- /dev/null
+++ b/emcmake
@@ -0,0 +1,8 @@
+#!/usr/bin/env python2
+
+import os, subprocess, sys
+from tools import shared
+
+configure_path = shared.path_from_root('emconfigure')
+exit(subprocess.call([configure_path] + sys.argv[1:]))
+