#
# example programs Imakefile
#
#

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

SRCS1=	basicmot.c
OBJS1=	basicmot.o

SRCS2=	motionhint.c
OBJS2=	motionhint.o

SRCS3=	motionhint.c
OBJS3=	motionhint.o

PROGRAMS = basicmot motionhint motionhist

all::  $(PROGRAMS)

LOCAL_LIBRARIES = $(XLIB)

NormalProgramTarget(basicmot,$(OBJS1),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(motionhint,$(OBJS2),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(motionhist,$(OBJS3),,$(LOCAL_LIBRARIES),)
