Sha256: fcdbc1158808fe980e0a1e4fb0a0a397eaf15838ee67db5f5a40f81af15a5d4e

Contents?: true

Size: 750 Bytes

Versions: 3

Compression:

Stored size: 750 Bytes

Contents

#!/usr/bin/env python2

'''
This is a helper script. It runs make for you, setting
the environment variables to use emcc and so forth. Usage:

  emmake make [FLAGS]

Note that if you ran configure with emconfigure, then
the environment variables have already been detected
and set. This script is useful if you have no configure
step, and your Makefile uses the environment vars
directly.

The difference between this and emconfigure is that
emconfigure runs compilation into native code, so
that configure tests pass. emmake uses Emscripten to
generate JavaScript.
'''

import os, sys
from tools import shared
from subprocess import CalledProcessError

try:
	shared.Building.make(sys.argv[1:])
except CalledProcessError, e:
	sys.exit(e.returncode)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
webruby-0.2.7 modules/emscripten/emmake
webruby-0.2.5 modules/emscripten/emmake
webruby-0.2.4 modules/emscripten/emmake