tracy/library/unix/Makefile
2020-01-25 17:16:08 +01:00

13 lines
146 B
Makefile

all: debug
debug:
@+make -f debug.mk all
release:
@+make -f release.mk all
clean:
@+make -f build.mk clean
.PHONY: all clean debug release