From 1062f0e5250de27ddf38da6b5ccb6827668d5f66 Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Mon, 26 Aug 2024 20:24:11 -0700 Subject: [PATCH] (m291) Added archive cmd --- gui/m291/makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gui/m291/makefile b/gui/m291/makefile index 61f29d5..5511e2a 100644 --- a/gui/m291/makefile +++ b/gui/m291/makefile @@ -17,8 +17,10 @@ install: ${ROM} @ cp ${ROM} ${DIR} uninstall: @ rm -f ${DIR}/${ID}.rom -archive: all - @ cp ${ID}.tal ../../../oscean/etc/${ID}.tal.txt +archive: + cat src/${ID}.tal src/assets.tal | sed 's/~[^[:space:]]\+//' > ~/Git/oscean/etc/${ID}.tal.txt + uxnasm ~/Git/oscean/etc/${ID}.tal.txt ${ROM} + @ ${EMU} ${ROM} .PHONY: all clean lint run install uninstall archive