########################################################################
# Linux x86 #
#############
LIB = ../logic.a
  FC = g77 -fno-backslash
  LOCALFC = g77
  CC = gcc 
# according to Peter Cordes <peter@llama.nslug.ns.ca> -lf2c is no longer
# needed with g77. I think this is correct as g77 now references libg2c 
# automatically
#  F2CLIB = -lf2c
# use next line for debugging only
#  DBG= -g -Wall
# options for C <-> Fortran naming
NAMEOPTION = -DTWOSCORE -DBIT32
CFLAGS = $(DBG) $(NAMEOPTION) -c 
FFLAGS = $(DBG) -c
# shared library options
#SHSUFFIX = so
# command to build shared libraries
#SHARECMD = $(FC) -shared 
# libraries needed to build shared libraries
#SHARELIB = 
# locations for TCL include files -- system dependent
#TCL_CFLAGS = -I/usr/include/tcl -I/usr/local/include
# libraries needed for linking
#TCLLIBS =  -ltcl -lm -ldl -lc -lgcc $(F2CLIB)
#TKLIBS = -ltk -ltcl -lm -ldl -lc -lgcc -L/usr/X11R6/lib -lX11 $(F2CLIB)
#
RANLIB = ranlib
########################################################################
# change this if -D is not the command line option to define preprocessor
# options from the command line (it is needed to include Tk into logic_shell.c)
#TK_CFLAGS = -DLOGIC_TK
#
