time for sirdi

This commit is contained in:
rhiannon morris 2022-05-02 20:51:19 +02:00
parent f503cf5734
commit 9ae0e36a65
16 changed files with 99 additions and 109 deletions

View file

@ -1,17 +0,0 @@
all: test
.PHONY: lib
lib:
$(MAKE) -C .. lib
depends/quox: lib
mkdir -p depends
ln -sf ../../build/ttc depends/quox
.PHONY: test
exe: depends/quox
idris2 --build quox-exe.ipkg
.PHONY: clean
clean:
$(RM) -r build depends

View file

@ -1,6 +0,0 @@
package quox-exe
executable = quox
main = Main
depends = base, contrib, quox

14
exe/sirdi.json Normal file
View file

@ -0,0 +1,14 @@
[
{
"name" : "quox-exe",
"deps" : [
{ "name" : "base", "legacy" : true },
{ "name" : "contrib", "legacy" : true },
{ "name" : "quox", "local" : ".." }
],
"main" : "Main",
"modules" : ["Main"]
}
]