diff options
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,5 +2,7 @@ # I'm a lazy guy BDIR="/dev/shm/${PWD##*/}_cmakebuild/" mkdir -p bin -cmake -S . -B "${BDIR}" && ( cd "${BDIR}" ; make ) && find "${BDIR}" -maxdepth 1 -perm /u=x,g=x,o=x -type f -exec cp "{}" bin/ \; +cmake -S . -B "${BDIR}" && ( cd "${BDIR}" ; make) && \ + find "${BDIR}" -maxdepth 1 -perm /u=x,g=x,o=x -type f -exec cp "{}" bin/ \; && \ + cp -v "${BDIR}${PWD##*/}.1" man/ |
