Output amalgamation into build/.

This commit is contained in:
Bob Nystrom
2015-04-25 08:38:45 -07:00
parent f07e38f40a
commit bead9a3406
2 changed files with 6 additions and 3 deletions
+3 -3
View File
@@ -54,8 +54,8 @@ gh-pages: docs
@ cp -r build/docs/. build/gh-pages
# Build amalgamation of all Wren library files.
wren.c: src/include/wren.h src/vm/*.h src/vm/*.c
./script/generate_amalgamation.py > $@
amalgamation: src/include/wren.h src/vm/*.h src/vm/*.c
./script/generate_amalgamation.py > build/wren.c
.DELETE_ON_ERROR: wren.c
.PHONY: debug release all clean test builtin docs watchdocs gh-pages
.PHONY: all amalgamation builtin clean debug docs gh-pages release test watchdocs