#
# example programs Imakefile
#
#

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

SRCS1=	xdialog.c 
OBJS1=	xdialog.o 

SRCS2=	xmenu1.c
OBJS2=	xmenu1.o

SRCS3=	xmenu2.c
OBJS3=	xmenu2.o

SRCS4=	xmenu3.c
OBJS4=	xmenu3.o

SRCS5=	xmenu4.c
OBJS5=	xmenu4.o

SRCS6=	xmenu5.c
OBJS6=	xmenu5.o

SRCS7=	xmenu6.c
OBJS7=	xmenu6.o

SRCS8=	xmenu7.c
OBJS8=	xmenu7.o

PROGRAMS = xdialog xmenu1 xmenu2 xmenu3 xmenu4 xmenu5 xmenu6 xmenu7

all::  $(PROGRAMS)

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

NormalProgramTarget(xdialog,$(OBJS1),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xmenu1,$(OBJS2),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xmenu2,$(OBJS3),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xmenu3,$(OBJS4),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xmenu4,$(OBJS5),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xmenu5,$(OBJS6),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xmenu6,$(OBJS7),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xmenu7,$(OBJS8),,$(LOCAL_LIBRARIES),)
