2024-03-29 13:01:40 +01:00

13 lines
295 B
Bash

compile() {
pushd $PRJ_DIR >/dev/null 2>&1
cd $SRC_DIR_NAME
compile_readVariables
compile_setBuildTarget
compile_defineMainFunction
compile_addFunctions
compile_invokeMainFunction
compile_otherFileProcessing
compile_replaceVariables
echo "Compiled successfully"
popd >/dev/null 2>&1
}