#
# example programs Imakefile
#
#

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

SRCS1=	xhello.c
OBJS1=	xhello.o

SRCS2=	xgoodbye.c
OBJS2=	xgoodbye.o

SRCS3=	xfarewell.c
OBJS3=	xfarewell.o

SRCS4=	xclickcount.c 
OBJS4=	xclickcount.o 

SRCS5=	xwhichbutton.c
OBJS5=	xwhichbutton.o

PROGRAMS = xhello xgoodbye xfarewell xwhichbutton xclickcount

all::  $(PROGRAMS)

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

NormalProgramTarget(xhello,$(OBJS1),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xgoodbye,$(OBJS2),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xfarewell,$(OBJS3),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xclickcount,$(OBJS4),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xwhichbutton,$(OBJS5),,$(LOCAL_LIBRARIES),)
