Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-10-06 00:02:59 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-06 00:44:39 +0300
commit754f7a5167634ab11d7802ceb200903fe4457621 (patch)
tree9b073d07815a2dad5abdbbba20e1584205bf1943 /profiler
parent3ca61ad2278c9e41a6ad5c65df4c8b7afc047dd0 (diff)
Add makefile target for starting httpd.
Diffstat (limited to 'profiler')
-rw-r--r--profiler/build/wasm/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/profiler/build/wasm/Makefile b/profiler/build/wasm/Makefile
index 7f34edf7..a53280b1 100644
--- a/profiler/build/wasm/Makefile
+++ b/profiler/build/wasm/Makefile
@@ -9,4 +9,7 @@ release:
clean:
@+make -f build.mk clean
-.PHONY: all clean debug release db
+serve:
+ @python httpd.py
+
+.PHONY: all clean debug release serve