RosBE/RosBE-Unix/Base-i386/scripts/clean.sh
Colin Finck 4119fa38bb My RosBE-Unix 2.0-RC1 changes. Don't ask me why I haven't committed them yet...
In some details:
- Add CMake, update GMP and Make, remove NASM.
- Strip off all debugging symbols from the built components.
- Remove all RBuild-specific quirks. This simplifies many scripts :-)

svn path=/trunk/RosBE/; revision=1345
2011-12-05 21:40:23 +00:00

19 lines
603 B
Bash
Executable File

#!/bin/bash
#
# Script for cleaning the ReactOS source directory
# Part of RosBE for Unix-based Operating Systems
# Copyright 2007-2011 Colin Finck <colin@reactos.org>
#
# Released under GNU GPL v2 or any later version.
# We only care about cleaning the default output directory, if any
REACTOS_OUTPUT_PATH="output-MinGW-$ROS_ARCH"
if [ -d "$REACTOS_OUTPUT_PATH" ]; then
echo "Cleaning ReactOS $ROS_ARCH source directory..."
rm -rf "$REACTOS_OUTPUT_PATH"
echo "Done cleaning ReactOS $ROS_ARCH source directory."
else
echo "ERROR: This directory contains no $ROS_ARCH compiler output to clean."
fi