2024-03-25 10:20:47 +01:00
|
|
|
compile() {
|
|
|
|
|
pushd $PRJ_DIR >/dev/null 2>&1
|
2024-03-28 15:17:16 +01:00
|
|
|
cd $SRC_DIR_NAME
|
2024-03-29 13:01:40 +01:00
|
|
|
compile_readVariables
|
|
|
|
|
compile_setBuildTarget
|
2024-03-25 10:20:47 +01:00
|
|
|
compile_defineMainFunction
|
|
|
|
|
compile_addFunctions
|
|
|
|
|
compile_invokeMainFunction
|
2024-03-29 13:01:40 +01:00
|
|
|
compile_otherFileProcessing
|
|
|
|
|
compile_replaceVariables
|
2024-03-25 10:20:47 +01:00
|
|
|
echo "Compiled successfully"
|
2024-03-28 15:17:16 +01:00
|
|
|
popd >/dev/null 2>&1
|
2024-03-25 10:20:47 +01:00
|
|
|
}
|