This commit is contained in:
2024-07-12 01:55:58 +03:00
parent 6d285a88d8
commit 9b1bbffbc4
23 changed files with 372 additions and 304 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# delete old objects
clean_dir "$OBJDIR/objects"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# delete old objects
clean_dir "$OBJDIR/objects"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# delete old objects
clean_dir "$OBJDIR/objects"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
cd "$OUTDIR"

View File

@@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/usr/bin/env bash
try_delete_dir_or_file "$OBJDIR"
try_delete_dir_or_file "$OUTDIR"
@@ -14,8 +14,8 @@ OLDIFS="$IFS"
IFS=$'\n'
cd "$DEPS_BASEDIR"
for dep in $DEPS; do
dep_dir=$(echo ${dep/=*/} | tr -d '[:blank:]')
myprint "${CYAN}--------------[$dep_dir]--------------"
dep_dir=$(safeprint ${dep/=*/} | tr -d '[:blank:]')
print_header "${CYAN}" "─" "$dep_dir"
cd "$dep_dir"
make clean
cd ..

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
cd "$OUTDIR"
./$EXEC_FILE

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
cd "$OUTDIR"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
cd "$OUTDIR"

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
cd "$OUTDIR"
rm -f "valgrind.log"