#
#       Imakefile for Athena widget set and plotter demos
#       klin, Mon Jun 29 19:09:41 1992

CDEBUGFLAGS = -g
INCLUDES= -I..
LOCAL_LIBRARIES = ../At/libAt.a $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB) -lm

SRCS = aplot.c bplot.c cplot.c sample_prog.c
OBJS = aplot.o bplot.o cplot.o sample_prog.o

SpecialObjectRule(aplot.o, aplot.c,)
NormalProgramTarget(aplot, aplot.o,,,$(LOCAL_LIBRARIES))

SpecialObjectRule(bplot.o, bplot.c,)
NormalProgramTarget(bplot, bplot.o,,,$(LOCAL_LIBRARIES))

SpecialObjectRule(cplot.o, cplot.c,)
NormalProgramTarget(cplot, cplot.o,,,$(LOCAL_LIBRARIES))

SpecialObjectRule(sample_prog.o, sample_prog.c,)
NormalProgramTarget(sample_prog, sample_prog.o,,,$(LOCAL_LIBRARIES))

all: aplot bplot cplot sample_prog
