tracy/library/unix/Makefile

13 lines
148 B
Makefile
Raw Normal View History

2020-10-03 11:45:11 +00:00
all: release
2020-01-25 16:08:33 +00:00
debug:
@+make -f debug.mk all
release:
@+make -f release.mk all
clean:
@+make -f build.mk clean
.PHONY: all clean debug release