1##
2## Site configuration for a SGI IRIX system.  Any special configuration that
3## should be done on an IRIX system should go in here.
4##
5## Use sgi's compiler.
6##
7if test -z "$CC"; then
8   CC=cc
9fi
10if test -z "$CXX"; then
11   CXX=CC
12fi
13
14##
15## Turn on full warnings unless the user specifies something else.
16##
17if test -z "$CFLAGS"; then
18   CFLAGS="-n32 -fullwarn"
19fi
20
21if test -z "$LDFLAGS"; then
22   LDFLAGS=-n32
23fi
24