blob: e24bd25969b3f72097edcc87c09455f3510342fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# Site configuration -- do not distribute this file.
CC="cc"
# -woff 799 about long long type non-standard
RANLIB=: # SGI does not use ranlib
# Don't set CFLAGS if the user already did.
if test -z "$CFLAGS"; then
CFLAGS="-ansi -fullwarn -woff 799"
fi
|