#
#       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 = -I/usr/remote/include/At
SYS_LIBRARIES = -L/usr/remote/lib9/X11/At -lAt XawClientLibs -lm
#else
INCLUDES = -I../At
ATLIB = -L../At -lAt
SYS_LIBRARIES = $(ATLIB) 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,,,)
NormalProgramTarget(bplot,bplot.o,,,)
NormalProgramTarget(cplot,cplot.o,,,)
NormalProgramTarget(dplot,dplot.o,,,)
NormalProgramTarget(eplot,eplot.o,,,)
NormalProgramTarget(sample_prog,sample_prog.o,,,)
