From 05f0346d0e15a78d1f827d7e949ab2d10a321739 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Wed, 9 Mar 2022 12:40:02 -0800 Subject: [PATCH] Depend on the general def.txt file. --- implementations/Nim/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/implementations/Nim/Makefile b/implementations/Nim/Makefile index 756cec1..23c5cc9 100644 --- a/implementations/Nim/Makefile +++ b/implementations/Nim/Makefile @@ -2,3 +2,7 @@ SOURCES = defs.nim joy.nim joylib.nim printer.nim reader.nim types.nim utils.nim joy: $(SOURCES) defs.txt nim c joy.nim + +defs.txt: ../defs.txt + cp -fv ../defs.txt defs.txt +