Add Makefile to remaining cargo projects

This commit is contained in:
2024-10-07 22:14:43 +02:00
parent daa1994570
commit a726800e05
6 changed files with 76 additions and 0 deletions

View File

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