homepage/Makefile

10 lines
277 B
Makefile

.PHONY: clean
build: confgen.lua src meta resources hx/out/index.js hx/out/article.js
confgen confgen.lua build
hx/out/%.js: hx/%.hxml hx/src/% hx/src/lib hx/common.hxml
cd $(dir $<) && haxe $(notdir $<) && cd .. && mv $(basename $@).min.js $@
clean:
rm -rf build hx/out