summaryrefslogtreecommitdiff
path: root/mcon/U/Mips.U
blob: e77b2fa25b2fb6c19ca4b1ab2ab97d41a906f940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
?RCS: $Id: Mips.U 167 2013-05-08 17:58:00Z rmanfredi $
?RCS:
?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS: 
?RCS: You may redistribute only under the terms of the Artistic License,
?RCS: as specified in the README file that comes with the distribution.
?RCS: You may reuse parts of this distribution only within the terms of
?RCS: that same Artistic License; a copy of which may be found at the root
?RCS: of the source tree for dist 4.0.
?RCS:
?RCS: $Log: usrinc.U,v $
?RCS: Revision 3.0.1.3  1997/02/28  16:27:12  ram
?RCS: patch61: don't ask for the include path unless they are on a MIPS
?RCS:
?RCS: Revision 3.0.1.2  1995/05/12  12:24:36  ram
?RCS: patch54: ensure that ./mips always exists (ADO)
?RCS:
?RCS: Revision 3.0.1.1  1994/05/06  15:18:31  ram
?RCS: patch23: ensure usrinc value is preserved across sessions (WED)
?RCS:
?RCS: Revision 3.0  1993/08/18  12:09:58  ram
?RCS: Baseline for dist 3.0 netwide release.
?RCS:
?MAKE:Mips mips_type incpath: test cat echo n c Getfile Guess \
	Oldconfig eunicefix contains rm
?MAKE:	-pick add $@ %<
?S:mips_type:
?S:	This variable holds the environment type for the mips system.
?S:	Possible values are "BSD 4.3" and "System V".
?S:.
?S:incpath:
?S:	This variable must precede the normal include path to get hte
?S:	right one, as in "$incpath/usr/include" or "$incpath/usr/lib".
?S:	Value can be "" or "/bsd43" on mips.
?S:.
?F:./mips !usr.c
: What should the include directory be ?
echo " "
$echo $n "Hmm...  $c"
incpath=''
?X:	mips_type is used later, to add -DSYSTYPE_BSD43 to cppflags if needed.
mips_type=''
?X:
?X:	Cannot put the following in Guess, or we get a circular dependency.
?X:
if $test -f /bin/mips && /bin/mips; then
	echo "Looks like a MIPS system..."
	$cat >usr.c <<'EOCP'
#ifdef SYSTYPE_BSD43
/bsd43
#endif
EOCP
	if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
		dflt='/bsd43/usr/include'
		incpath='/bsd43'
		mips_type='BSD 4.3'
	else
		mips_type='System V'
	fi
	$rm -f usr.c usr.out
	echo "and you're compiling with the $mips_type compiler and libraries."
	echo "exit 0" >mips
else
	echo "Doesn't look like a MIPS system."
	echo "exit 1" >mips
fi
chmod +x mips
$eunicefix mips