source: mainline/tools/clean@ 795ff98

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 795ff98 was 7fc2bec1, checked in by Jakub Jermar <jakub@…>, 20 years ago

Rename build.ia32 to tools/build.
Point build.{amd64,ia32,ia64,mips32,ppc32,sparc64} to tools/build.
The same for clean.

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