#
# example programs Imakefile
#
#

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

SRCS1=	xbitmap1.c BitmapEdit.c
OBJS1=	xbitmap1.o BitmapEdit.o 

SRCS2=	xbitmap2.c BitmapEdit.c
OBJS2=	xbitmap2.o BitmapEdit.o

SRCS3=	xbitmap3.c BitmapEdit.c
OBJS3=	xbitmap3.o BitmapEdit.o

SRCS4=	xbitmap4.c BitmapEdit.c
OBJS4=	xbitmap4.o BitmapEdit.o

SRCS5=	xbitmap5.c BitmapEdit.c
OBJS5=	xbitmap5.o BitmapEdit.o

PROGRAMS = xbitmap1 xbitmap2 xbitmap3 xbitmap4 xbitmap5 
all::  $(PROGRAMS)

LOCAL_LIBRARIES = -lXm $(XTOOLLIB) $(XLIB)

NormalProgramTarget(xbitmap1,$(OBJS1),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xbitmap2,$(OBJS2),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xbitmap3,$(OBJS3),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xbitmap4,$(OBJS4),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xbitmap5,$(OBJS5),,$(LOCAL_LIBRARIES),)

