/**/#
/**/#	This is an Imakefile for the template program.  The only changes that
/**/#	should need to be made is for the PROGD and XGOBID variables.
/**/#
/**/#  Set PROGD to the directory containing 
/**/#  the xgvis directories src, help, etc.
/**/#
          PROGD = $(PWD)/..
/**/#
/**/#  Set XGOBID to the directory containing 
/**/#  the xgobi directories src, help, ps, etc.
/**/#  Both the include files and the library are there.
/**/#
          XGOBID = /usr/dfs/xgobi

              CC = cc
              LD = 
     CDEBUGFLAGS = -g

  EXTRA_INCLUDES = -I$(XGOBID)/src
 LOCAL_LIBRARIES = -L$(XGOBID)/src -lxgobi XawClientLibs
   SYS_LIBRARIES = -lm
         DEFINES = -DPROGD=\"$(PROGD)\"

SRCS = *.c
OBJS = prog.o widgets.o 

ComplexProgramTarget(prog)

