cobek/tasks/pre_build.sh
2023-01-15 22:46:32 +06:00

10 lines
161 B
Bash

#!/bin/bash
cd kerep
if [ ! -f "bin/kerep.a" ]; then
exec make "$KEREP_BUILD_TASK"
fi
cp bin/kerep.a ../obj/
printf "${GREEN}copied ${CYAN}kerep.a\n"
cd ..