diff options
author | Marvin Borner | 2020-12-20 00:12:35 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-20 00:12:35 +0100 |
commit | 8b675a93e9f0c176a3a78a9d0485e96fbcd9303f (patch) | |
tree | a04b9a24fc3512383e189293aa20c1b158e20aab /2020/19/Makefile | |
parent | 6b488c1fed7801bbae1d79b9b985d19008fd925b (diff) |
Finally (I used JS now..)
Diffstat (limited to '2020/19/Makefile')
-rw-r--r-- | 2020/19/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/2020/19/Makefile b/2020/19/Makefile index fc2ff1a..c88f7f9 100644 --- a/2020/19/Makefile +++ b/2020/19/Makefile @@ -6,5 +6,8 @@ solve.o: solve.c clean: @rm -f *.o -run: solve.o +run: + @node solve.js + +c: solve.o @./solve.o |