]> err.no Git - sope/blob - gnustep-make/clean_cpu.sh
added -increaseSequence
[sope] / gnustep-make / clean_cpu.sh
1 #!/bin/sh
2 #
3 #   clean_cpu.sh
4 #
5 #   Clean up the target cpu name.
6 #
7 #   Copyright (C) 1997 Free Software Foundation, Inc.
8 #
9 #   Author:  Scott Christley <scottc@net-community.com>
10 #
11 #   This file is part of the GNUstep Makefile Package.
12 #
13 #   This library is free software; you can redistribute it and/or
14 #   modify it under the terms of the GNU General Public License
15 #   as published by the Free Software Foundation; either version 2
16 #   of the License, or (at your option) any later version.
17 #   
18 #   You should have received a copy of the GNU General Public
19 #   License along with this library; see the file COPYING.LIB.
20 #   If not, write to the Free Software Foundation,
21 #   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 case "$1" in
24     # Intel processors are made equivalent
25     i[3456]86)
26         echo ix86
27         exit 0
28         ;;
29     # Make all alpha variants the same
30     alpha*)
31         echo alpha
32         exit 0
33         ;;
34     # Make all hppa variants the same
35     hppa*)
36         echo hppa
37         exit 0
38         ;;
39     *)
40         echo $1
41         exit 0
42         ;;
43 esac