added example artifacts for JPM-enabled build for Janet port of Scoundrel: project.janet and Makefile

This commit is contained in:
Luxferre
2026-04-01 16:19:11 +03:00
parent b7ddaf3c17
commit 3ef673cf21
2 changed files with 24 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Makefile for Scoundrel Janet port JPM build
JC := jpm build --build-type=release --ldflags="-s"
all: clean
$(JC)
static: clean
$(JC) --janet-cflags="-static"
clean:
jpm clean
+11
View File
@@ -0,0 +1,11 @@
(declare-project
:name "scoundrel"
:description "A Janet port of Scoundrel roguelike solitaire game")
(declare-source
:source ["scoundrel.janet"])
(declare-executable
:name "scoundrel"
:entry "scoundrel.janet"
:install true)