This commit is contained in:
Timerix22 2023-02-13 20:40:55 +06:00
parent a0cdbf5522
commit 8e6b4336d0
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ exec: build_exec
# executes $EXEC_FILE
exec_dbg: build_exec_dbg
@cbuild/call_task.sh exec_dbg 2>&1 | tee -a make_raw.log
@cbuild/call_task.sh exec 2>&1 | tee -a make_raw.log
# executes $EXEC_FILE with valgrind memory checker
valgrind: build_exec_dbg

View File

@ -30,7 +30,7 @@ case "$OS" in
SHARED_LIB_FILE="$PROJECT.dll"
;;
LINUX)
EXEC_FILE="$PROJECT.P"
EXEC_FILE="$PROJECT"
SHARED_LIB_FILE="$PROJECT.so"
;;
*)