source: mainline/tools/clean@ 994cf4b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 994cf4b was 090e7ea1, checked in by Ondrej Palkovsky <ondrap@…>, 20 years ago

Doc cleanup.

  • Property mode set to 100755
File size: 280 bytes
Line 
1#! /bin/sh
2
3# Without Makefile.config the makefile does not work...
4touch Makefile.config
5
6ARCH="`basename "$0" | awk -F. '{ if (NF > 1) print \$NF }'`"
7if [ -z "$ARCH" ]; then
8 for ARCH in arch/* ; do
9 make clean "ARCH=`basename "$ARCH"`"
10 done
11else
12 make clean "ARCH=$ARCH"
13fi
Note: See TracBrowser for help on using the repository browser.