#***************
#* SunOS 4.1.* *
#***************

###############################
# Compiler
#
CC="cc"
###############################

###############################
# C flags
#
CFLAGS=""
###############################

###############################
# Misc optimization flags
#
OPTIMIZE="-O"
###############################

###############################
# Flags used for debugging
#
DEBUG="-g"
###############################

###############################
# FORTRAN compiler
# (only used for one demo)
#
FC="f77"
###############################

###############################
# Whether f77 compiler adds "_"
# to external function names.
# Most compilers do.
#
F_UNDERSCORE="-DNEED_F_UNDERSCORE"
###############################


###############################
# Type of computer arithmetic - used by Cephes library.
# IBMPC (Intel IEEE), DEC (VAX), MIEEE (Motorola IEEE) or UNK (unknown).
CEPHES_ARCH="MIEEE"
###############################

