ref: 7a2a563300638cc24c337bd3654655478df07358
parent: 9becc0f49e578b65be68e4b4e7c9bb576da09966
author: kvik <kvik@a-b.xyz>
date: Sat Feb 6 22:41:38 EST 2021
mkfile: add clone and pull for working with dependencies
--- a/mkfile
+++ b/mkfile
@@ -13,6 +13,16 @@
all:V: $TARG
+clone:V:
+ git/clone https://git.sr.ht/~kvik/lua9-lua lua
+ git/clone https://git.sr.ht/~kvik/lua9-lpeg lpeg
+ git/clone https://git.sr.ht/~kvik/lua9-shim shim
+
+pull:V:
+ @{cd lua; git/pull}
+ @{cd lpeg; git/pull}
+ @{cd shim; git/pull}
+
clean:V:
@{cd shim; mk clean}
@{cd lua; mk clean}