From 38df05c5a8b9ecd317515da5baed8b105ead9b45 Mon Sep 17 00:00:00 2001 From: lms Date: Fri, 3 Jan 2025 00:45:03 +0100 Subject: [PATCH] Add support for building out a marl.xdc application --- webxdc/Makefile | 4 ++++ webxdc/manifest.toml | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 webxdc/Makefile create mode 100644 webxdc/manifest.toml diff --git a/webxdc/Makefile b/webxdc/Makefile new file mode 100644 index 0000000..89af16a --- /dev/null +++ b/webxdc/Makefile @@ -0,0 +1,4 @@ +build: + rm -f marl.xdc + (cd .. && zip -9 --recurse-paths - index.html css/ js/ img/ svg/) > marl.xdc + zip marl.xdc manifest.toml diff --git a/webxdc/manifest.toml b/webxdc/manifest.toml new file mode 100644 index 0000000..664ec0f --- /dev/null +++ b/webxdc/manifest.toml @@ -0,0 +1,2 @@ +name = "MARL" +source_code_url = "https://github.com/s427/MARL"