set -x for makest as well as proper default make action

This commit is contained in:
Von Random 2019-01-09 13:40:15 +03:00
parent 67480edd29
commit 93798d398e

3
makest
View file

@ -1,4 +1,5 @@
#!/usr/bin/env zsh
set -x
ST_REPO=https://git.suckless.org/st
ST_SRC=$PWD/st
ST_CFG=$PWD/config.h
@ -28,4 +29,4 @@ for patch in $PATCHLIST; do
patch -p1 -i ../$patch
done
make $MAKE_OPTS ${*-install}
make $MAKE_OPTS ${*:-install}