BicaVM/makefile

16 lines
385 B
Makefile
Raw Normal View History

all: ids
ids:
cd webserver && python app.py
preprocess:
mkdir -p build
2011-07-19 15:17:34 +01:00
/usr/bin/cpp -P -undef -CC -Wundef -std=c99 -nostdinc -Wtrigraphs -fdollars-in-identifiers src/main.js build/pp_jvm.js
compile: preprocess
2011-07-19 15:17:34 +01:00
java -jar lib/compiler.jar --warning_level VERBOSE --compilation_level ADVANCED_OPTIMIZATIONS --js build/pp_jvm.js --js_output_file build/jvm.js
clean:
rm -dR build