mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
19 lines
314 B
Makefile
19 lines
314 B
Makefile
all: release
|
|
|
|
embed.tracy:
|
|
wget https://share.nereid.pl/i/embed.tracy
|
|
|
|
debug: embed.tracy
|
|
@+make -f debug.mk all TRACY_NO_ISA_EXTENSIONS=1
|
|
|
|
release: embed.tracy
|
|
@+make -f release.mk all TRACY_NO_ISA_EXTENSIONS=1
|
|
|
|
clean:
|
|
@+make -f build.mk clean
|
|
|
|
serve:
|
|
@python httpd.py
|
|
|
|
.PHONY: all clean debug release serve
|