Add Makefile to remaining cargo projects

This commit is contained in:
Jaby
2024-10-07 22:14:43 +02:00
committed by Jaby
parent 776fa6fe02
commit c3b9ec7467
6 changed files with 76 additions and 0 deletions

View File

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