#
# Makefile_defs.
#
# Generic definitions which may work fine.
#
#

########################################################
#                                                      #
# Set machine type -- suffix for savi                  #
#                                                      #
########################################################
MACH = unknown

########################################################
#                                                      #
# set CC to an ANSI C compiler                         #
#                                                      #
########################################################
CC = gcc

########################################################
#                                                      #
# set TCL_INCLUDE_DIR to the location of tcl.h         #
# set TK_INCLUDE_DIR to the location of tk.h           #
#                                                      #
# if tcl/tk is installed in a standard place           #
# it is not necessary to set these                     #
#                                                      #
########################################################
#TCL_INCLUDE_DIR = /usr/include
#TK_INCLUDE_DIR = /usr/include

########################################################
#                                                      #
# set TCL_LIB_DIR to the location of libtcl.a          #
# set TK_LIB_DIR to the location of libtk.a            #
#                                                      #
# if tcl/tk is installed in a standard place           #
# it is not necessary to set these                     #
#                                                      #
########################################################
#TCL_LIB_DIR = /usr/local/lib
#TK_LIB_DIR = /usr/local/lib

########################################################
#                                                      #
# set TCL_INCLUDES so that the compiler can            #
# find the tcl.h and tk.h                              #
#                                                      #
# if tcl/tk is installed in a standard place           #
# it is not necessary to set this                      #
#                                                      #
########################################################
#TCL_INCLUDES = -I$(TCL_INCLUDE_DIR) -I$(TK_INCLUDE_DIR)

########################################################
#                                                      #
# set TCL_LIBS so that the compiler can find           #
# libtcl.a and libtk.a                                 #
#                                                      #
# NOTE: Needs Tcl 7.4 and Tk 4.0                       #
#                                                      #
########################################################
TCL_LIBS = -ltk -ltcl

########################################################
#                                                      #
# Set these variables so that X11 include files and    #
# libX11.a can be found                                #
#                                                      #
########################################################
X11_LIBS = -lX11

