Add makefile for psxreadmap

This commit is contained in:
2024-10-07 22:04:43 +02:00
parent 16f8f103e0
commit daa1994570
4 changed files with 27 additions and 4 deletions

View File

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