#
#       Imakefile for Plotter Widget Demo programs using Xaw
#       klin, Tue Jan  5 19:15:26 1993
#

/* Uncomment UseInstalledAt if libAt.a and include files are installed */
#define UseInstalledAt

/* Set to -O if you trust your compiler */
CDEBUGFLAGS = -g

#ifdef  UseInstalledAt
INCLUDES =
SYS_LIBRARIES = -lAt XawClientLibs -lm
#else
INCLUDES = -I../At
SYS_LIBRARIES = ../At/libAt.a XawClientLibs -lm
#endif

SRCS = aplot.c bplot.c cplot.c dplot.c eplot.c sample_prog.c
OBJS = aplot.o bplot.o cplot.o dplot.o eplot.o sample_prog.o
PRGS = aplot   bplot   cplot   dplot   eplot   sample_prog

AllTarget($(PRGS))

NormalProgramTarget(aplot,aplot.o,,,NullParameter)
NormalProgramTarget(bplot,bplot.o,,,NullParameter)
NormalProgramTarget(cplot,cplot.o,,,NullParameter)
NormalProgramTarget(dplot,dplot.o,,,NullParameter)
NormalProgramTarget(eplot,eplot.o,,,NullParameter)
NormalProgramTarget(sample_prog,sample_prog.o,,,NullParameter)
