mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-06 14:56:51 +08:00
14 lines
269 B
Bash
14 lines
269 B
Bash
#!/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
|