tracy/profiler/build/wasm/Makefile

21 lines
366 B
Makefile
Raw Normal View History

2022-09-29 22:57:53 +00:00
all: release
2023-03-25 11:20:36 +00:00
embed.tracy:
wget https://share.nereid.pl/i/embed.tracy
debug: embed.tracy
@$(MAKE) -f debug.mk all TRACY_NO_ISA_EXTENSIONS=1
2022-09-29 22:57:53 +00:00
2023-03-25 11:20:36 +00:00
release: embed.tracy
@$(MAKE) -f release.mk all TRACY_NO_ISA_EXTENSIONS=1
2022-09-29 22:57:53 +00:00
clean:
@$(MAKE) -f build.mk clean
2023-03-25 11:26:28 +00:00
rm -rf Tracy-release.*
rm -rf Tracy-debug.*
2022-09-29 22:57:53 +00:00
serve:
@python httpd.py
.PHONY: all clean debug release serve