mirror of
https://git.planet-casio.com/Lephenixnoir/sh-elf-gcc.git
synced 2024-12-28 04:23:39 +01:00
14 lines
259 B
Bash
Executable file
14 lines
259 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
source util.sh
|
|
PREFIX="$1"
|
|
|
|
# Remove symlinks
|
|
echo "$TAG Removing symlinks to binaries..."
|
|
for x in bin/*; do
|
|
rm "$PREFIX/$x"
|
|
done
|
|
|
|
# Remove local files
|
|
echo "$TAG Removing installed files..."
|
|
rm -rf bin/ include/ lib/ libexec/ share/
|