Subversion Repositories HelenOS-historic

Rev

Rev 534 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

#! /bin/sh

# Without Makefile.config the makefile does not work...
touch Makefile.config

ARCH="`basename "$0" | awk -F. '{ if (NF > 1) print \$NF }'`"
if [ -z "$ARCH" ]; then
    for ARCH in arch/* ; do
        make clean "ARCH=`basename "$ARCH"`"
    done
else
    make clean "ARCH=$ARCH"
fi