box-o-sand/web/Makefile

17 lines
224 B
Makefile
Raw Normal View History

2011-01-03 21:40:52 +00:00
ROOT ?= $(PWD)
HTTP_PORT ?= 49228
serve: nginx.conf
nginx -p $(ROOT)/ -c $(ROOT)/$<
nginx.conf: nginx.conf.in
cat $< | \
sed -e 's@__ROOT__@$(ROOT)@g' \
-e 's@__HTTP_PORT__@$(HTTP_PORT)@g' > $@
.PHONY: serve