Files
newt/Makefile
Steve Dunham a9c72d5a6d drop HOAS, add Monad stack.
HOAS was dropped while fixing unrelated bug, but I think I'll keep it
out.
2024-04-11 21:09:42 -07:00

10 lines
151 B
Makefile

SRCS=$(shell find src -name "*.idr")
all: build/exec/newt
build/exec/newt: ${SRCS}
idris2 --build newt.ipkg
test: build/exec/newt
build/exec/newt