#
# Makefile_defs_cygwin
#
# Definitions which work for a Win32/cygwin system:
# http://www.cygwin.com/
# Originally ported by Matthias Foehl <matthias.foehl@gmx.de>
#
# Always run make ARCH=platform from the top-level savi directory.
#
# You may need to alter the name of the tclsh
# executable set in ~savi/tcl/Makefile
# if running an older version of Cygwin.
#
# $Id: Makefile_defs_cygwin,v 1.3 2006/04/30 13:47:30 lloydwood Exp $


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

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

########################################################
#                                                      #
# 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. You may need to     #              
# change the numbers to match your version of tcl/tk.  #
# The numbers in the topmost savi script should also   #
# match.                                               #
#                                                      #
########################################################
TCL_INCLUDES =

########################################################
#                                                      #
# set TCL_LIBS so that the compiler can find           #
# libtcl.a and libtk.a. Alter to suit - see above.     #
#                                                      #
########################################################
TCL_LIBS = -ltk84 -ltcl84

########################################################
#                                                      #
# Set OTHER_LIBS so that any other stuff needing to    #
# be linked in will be!                                #
#                                                      #
########################################################
OTHER_LIBS = 
#-ldl
# OTHER_LIBS = -static

