logo

utils

~/.local/bin tools and git-hooks
commit: a0bf4938201c4b1d1a1b4148e4db69b5eab3818f
parent: 99fddd8390630db8f318f4051b7a35052eb6d48b
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun,  7 Oct 2018 22:10:25 +0200

mkfile: fix "mk install"

Diffstat:

Mmkfile4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mkfile b/mkfile @@ -10,8 +10,8 @@ bins=`ls -d src/*.c | sed -e 's;src;bin;' -e 's;\.c$;;'` all:V: $bins install:V: all - for i in $bins; do cp bin/$i $BINDIR/; done - cp -r docs $DOCDIR + for bin in $bins; do cp $bin $BINDIR/; done + for doc in doc/*; do cp $doc $DOCDIR/; done clean:V: rm -f $bins