#
# example programs Imakefile
#
#

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

SRCS1=	xtwodisp.c 
OBJS1=	xtwodisp.o 

SRCS2=	xtwoapp.c
OBJS2=	xtwoapp.o

PROGRAMS = xtwodisp xtwoapp

all::  $(PROGRAMS)

LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB)

NormalProgramTarget(xtwodisp,$(OBJS1),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xtwoapp,$(OBJS2),,$(LOCAL_LIBRARIES),)
