###########################################################################
# 
#  TinyFugue configuration file
# 
###########################################################################
# 
#  The Build script can usually figure out everything it needs to know
#  about your system, so you probably won't need to edit this file unless
#  you want to change some defaults or enable some optional features.
#  See the README file if you have problems or want to make any changes.
#
#  Just type "Build" to install everything.
#
#  If you edit anything, make sure everything on the right side of an equal
#  sign is enclosed in quotes.  In the instructions, "uncomment" means
#  remove the "#" character from the beginning of the line.
# 
###########################################################################


### Flags.
# This is the place to add flags as instructed by the README file.
# Do not put optimization flags here.

FLAGS=''


### Terminal Driver.
# The Build script can usually figure this out by itself.  You only need to
# uncomment one of these lines if Build guesses incorrectly.

# TTYDRIVER='-DUSE_TERMIOS'
# TTYDRIVER='-DUSE_TERMIO'
# TTYDRIVER='-DUSE_SGTTY'


### Terminal Handling.
# This script will assume you want to use termcap unless you uncomment
# one of the lines below.

# TERMINAL='-DTERMCAP'
# TERMINAL='-DHARDCODE'
# TERMINAL=' '


### Non-Blocking Connect.
# To enable non-blocking connect, uncomment the CONNECT line appropriate
# to your system type.  Note:  nonblocking connect will not work on all
# systems.  See README for details.  To explicitly NOT use nonblocking
# connect, set CONNECT='blocking'.

# CONNECT='blocking'
# CONNECT='CONNECT_BSD'
# CONNECT='CONNECT_SVR4'


### File Locations.
# Default locations for files are /usr/local/{bin,lib} if writable,
# or $HOME/{bin,lib} if they exist, or $HOME.  To change any file location,
# uncomment and edit the appropriate line below.
# If you don't want the help file, set HELPFILE='/dev/null'.

EXE="/usr/local/bin/tf"
TFCONNECT="/usr/local/bin/tf.connect"
TFLIBRARY="/usr/local/lib/tf.library"
HELPFILE="/usr/local/lib/tf.help"


### Manual Page.
# Man page will not be installed by default.  To have it installed,
# uncomment and edit the lines below.  Set MANTYPE=nroff if your man
# uses nroff format; set MANTYPE=cat if your man uses pre-formatted
# vt100 "catman" pages.  Default is "cat".

MANTYPE='nroff'
MANPAGE='/usr/man/man1/tf.1'


### Mail Directory.
# Normally, this Build script can find the mail directory by itself.
# You only need to set this if you keep mail in an unusual place.
# Be sure to include a trailing '/'.
# If your system keeps incoming mail in the recipient's home, see
# the instructions in README.

# MAILDIR='/weird/mail/directory/'


### Restriction Options.
# For public installation, you may wish to disable certain features of
# TinyFugue.  To do so, uncomment one or more of the RESTRICT lines below.
# If you restrict file access, you should restrict shell access too.

# RESTRICT="$RESTRICT -DRESTRICT_SHELL"
# RESTRICT="$RESTRICT -DRESTRICT_FILE"
# RESTRICT="$RESTRICT -DRESTRICT_WORLD"


### Random.
# You only need to uncomment this if Build can't find rand() or random().

# RAND='-DRANDOM=random -DSRANDOM=srandom'


### Compiler.
# Unless you define CC below, Build will use "gcc -g -ansi" if available,
# "cc -g" if not.   Note:  do not add optimization flags here.  Note:  if
# you want to change CCFLAGS, you must uncomment CC also.

# CC="cc"
# CCFLAGS="-g"


### Optimization.
# If you want compiler optimization, uncomment the next line and add the
# correct flags for your compiler ("-O" for most compilers).  I don't do
# this by default because I want "-g" debugging information.

OPT="-O"


### POSIX.
# If the compile fails in an #ifdef _POSIX_VERSION block, try uncommenting
# the line below.

# POSIX=0


### System Type.
# If Build fails because you have an unusual system (or it thinks you do,
# and you really don't), you may need to uncomment one of the lines below.

# SYSTEM='WINS'
# SYSTEM='DYNIX_PTX'
# SYSTEM='DOMAIN_OS'
# SYSTEM='other'


### Include Directory.
# Uncomment and edit this line if your include files are not in /usr/include.

# INCDIR='/weird/include'


### C Library.
# Uncomment and edit this line if Build can't find your C library.

# LIBC='/weird/libc.a'


### Other Compiler Libraries.
# This is the place to add extra libraries as described in README
# if your linker can't resolve an external reference.

LIBS=''


### Make Program.

MAKE='make'

