Create tim_tool project

This commit is contained in:
2025-01-21 18:17:11 +00:00
parent 6fc9b80477
commit 89c81798b4
5 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
include ../Common.mk
ARTIFACT = tim_tool
.PHONY: $(WINDOWS_ARTIFACT) $(UNIX_ARTIFACT)
$(WINDOWS_ARTIFACT):
$(call cargo_windows_default)
$(UNIX_ARTIFACT):
$(call cargo_unix_default)
all-windows: $(WINDOWS_ARTIFACT)
all: $(UNIX_ARTIFACT)