mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
16 lines
180 B
Makefile
16 lines
180 B
Makefile
all: release
|
|
|
|
debug:
|
|
@+make -f debug.mk all
|
|
|
|
release:
|
|
@+make -f release.mk all
|
|
|
|
clean:
|
|
@+make -f build.mk clean
|
|
|
|
serve:
|
|
@python httpd.py
|
|
|
|
.PHONY: all clean debug release serve
|