#------------------------------------------------------------------------------
# GENERAL INSTRUCTIONS:
# For each configuration parameter, unless otherwise noted, only one
#   line should be uncommented (i.e. not preceded by the # comment character).
#------------------------------------------------------------------------------

#------------------------------------------------------------------------------
# C compiler
#------------------------------------------------------------------------------
#CC = gcc
CC = cc

#------------------------------------------------------------------------------
# Pass debug flag to C compiler? (may specify optimization flags, instead)
#------------------------------------------------------------------------------
#CDEBUGFLAGS = -O2
CDEBUGFLAGS = -g
#CDEBUGFLAGS =

#------------------------------------------------------------------------------
# install utility.  If the supplied one doesn't work, roll your own
#------------------------------------------------------------------------------
#INSTALL = /usr/local/bin/install
# Be sure to replace <path-to-DQS> with a full pathname.
INSTALL = <path-to-DQS>/DQS/XSRC/Util/install

#------------------------------------------------------------------------------
# mkdirhier utility.  If the supplied one doesn't work, roll your own
#------------------------------------------------------------------------------
# Be sure to replace <path-to-DQS> with a full pathname.
MKDIRHIER = <path-to-DQS>/DQS/XSRC/Util/mkdirhier

#------------------------------------------------------------------------------
# Path under which executable binaries will be installed
#------------------------------------------------------------------------------
#INSTALL_BINDIR = /usr/bin/X11
#INSTALL_BINDIR = /usr/local/bin
# Use $(BINDIR) if you want the binaries to go in the usual X11 place
# decided by imake
INSTALL_BINDIR = $(BINDIR)

#------------------------------------------------------------------------------
# 3-D Athena Widgets Library
#------------------------------------------------------------------------------
# Use the following if you have the Xaw3d library in the standard
# X11 libraries directory i.e. we don't have to build it
#XAW3D_LIB = -lXaw3d
# Use the following if you do NOT want the Xaw3d library built
# YOU MUST USE THIS IF YOUR SYSTEM ONLY HAS X11R4 OR LOWER
#XAW3D_LIB = $(XAWLIB)
# Use the following _pair_ of parameters if you want the Xaw3d library built
BUILD_XAW3D = True
XAW3D_LIB = ../Xaw3d/libXaw3d.a

#------------------------------------------------------------------------------
# Method for invoking a `top' utility for monitoring busy processes.
#------------------------------------------------------------------------------
#TOP_BINARY = "monitor -top"
TOP_BINARY = "top"

#------------------------------------------------------------------------------
# Method for invoking the `date' utility to obtain a formatted date.
#------------------------------------------------------------------------------
# SunOS 4.1.3 (maybe other SunOS's?)
#DATE_BINARY = "date +%y%m%d%H%M"
# others, including Solaris 2.3
DATE_BINARY = "date +%Y%m%d%I%M"

#------------------------------------------------------------------------------
# Path under which DQS configuration files have been installed
# (e.g. resolve_file, key_file).
# This will most likely be the same as the CONF_DIR in the
# file <path-to-DQS>/DQS/Makefile.
#------------------------------------------------------------------------------
DQS_CONF_DIR=<INSTALL_DIR>/conf

#------------------------------------------------------------------------------
# Path under which qmon bitmaps will be installed
#------------------------------------------------------------------------------
#INSTALL_BITMAPDIR = /usr/local/X11R5/lib/X11/bitmaps
INSTALL_BITMAPDIR = /usr/lib/X11/bitmaps

#------------------------------------------------------------------------------
# Path under which X application default files will be installed
#------------------------------------------------------------------------------
#XAPPDEFDIR = /usr/local/X11R5/lib/X11/app-defaults
XAPPDEFDIR = /usr/lib/X11/app-defaults

#------------------------------------------------------------------------------
# Path to the PostScript font metrics files (e.g. *.afm)
# TAKE A LOOK AROUND your filesystem and see if these aren't already present
# IMPORTANT: Use quoted "s
#------------------------------------------------------------------------------
#AFMPATH = \"/usr/local/X11R5/lib/At/afm\"
AFMPATH = \"/usr/lib/At/afm\"

#------------------------------------------------------------------------------
# Path under which info (on-line help) files will be installed
#------------------------------------------------------------------------------
INFOPATH = /usr/local/info
#INFOPATH = /usr/local/emacs/info

#------------------------------------------------------------------------------
# Any additional libraries
#------------------------------------------------------------------------------
# The following may be required for Solaris 2.x
#EXTRA_LIBS = /usr/ucblib/libucb.a -lelf
#EXTRA_LIBS = -lsocket -lnsl -lelf -lkvm
EXTRA_LIBS =
