From: Simon Forman Date: Tue, 22 Feb 2022 20:55:09 +0000 (-0800) Subject: Simple makefile for Nim implementation. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=737795acaa176f1e6a069fadbf000feaec24ab78;p=joypy%2FThun.git Simple makefile for Nim implementation. --- diff --git a/implementations/Nim/Makefile b/implementations/Nim/Makefile new file mode 100644 index 0000000..756cec1 --- /dev/null +++ b/implementations/Nim/Makefile @@ -0,0 +1,4 @@ +SOURCES = defs.nim joy.nim joylib.nim printer.nim reader.nim types.nim utils.nim + +joy: $(SOURCES) defs.txt + nim c joy.nim