Add makefile for psxreadmap

This commit is contained in:
Jaby
2024-10-07 22:04:43 +02:00
committed by Jaby
parent b704786f1c
commit 2d85c56322
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)