1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
#------------------------------------------------------------------------------
# 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's required for Solaris 2.x
#EXTRA_LIBS = /usr/ucblib/libucb.a -lelf
EXTRA_LIBS =
|