From cb675fc334114c84891278d444388edec130abf8 Mon Sep 17 00:00:00 2001 From: lufia Date: Mon, 8 Apr 2019 23:29:55 +0900 Subject: [PATCH] plan9: add a mkfile to compile, build and install artifacts --- mkfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 mkfile diff --git a/mkfile b/mkfile new file mode 100644 index 0000000000..1a3bb97ed9 --- /dev/null +++ b/mkfile @@ -0,0 +1,14 @@ +srcdir=. + +DIRS=\ + crypto\ + ssl\ + tls\ + include\ + apps\ + +all clean nuke install:V: + for(i in $DIRS) @{ + cd $i + mk $target + }