########################################################################
# HP #   Not tested!
######
LIB = ../logic.a
  FC = fort77 -g
  CC = cc -Aa -g 
  F2CLIB = -lf2c
  LOCALFC = fort77
# options for C <-> Fortran naming
NAMEOPTION = -DNOSCORE -DBIT32
CFLAGS = $(DBG) $(NAMEOPTION) -c 
FFLAGS = $(DBG) -c
# shared library options
SHSUFFIX = so
# command to build shared libraries
SHARECMD = $(FC) -shared 
# command to build shared libraries
SHARELIB = 
# locations for TCL include files -- system dependent
TCL_CFLAGS = -I/usr/include/tcl -I/usr/local/include -I/usr/include/X11R5
# libraries needed for linking
TCLLIBS =  -L/usr/local/lib -ltcl -lm $(F2CLIB)
TKLIBS = -L/usr/local/lib -ltk -ltcl -lm -lX11 $(F2CLIB)
#
RANLIB = echo
########################################################################
# 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
#
