From 2c4f49f545d0ec258b223333006d5db705f01d8d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Fri, 2 May 2014 17:47:44 -0400 Subject: [PATCH] examples/pnacl: add server option to Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- examples/pnacl/converter/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/pnacl/converter/Makefile b/examples/pnacl/converter/Makefile index 7f7a22f..06318b6 100644 --- a/examples/pnacl/converter/Makefile +++ b/examples/pnacl/converter/Makefile @@ -1,2 +1,8 @@ default: ../../../bin/nitg --global converter.nit + +HTTPD_PY := python $(NACL_SDK_ROOT)/tools/httpd.py +serve: + $(HTTPD_PY) -C . --no-dir-check + +.PHONY: serve -- 1.7.9.5