#
# example programs Imakefile
#
#

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

SRCS1=	xrowcolumn.c 
OBJS1=	xrowcolumn.o 

SRCS2=	xform.c
OBJS2=	xform.o

SRCS3=	xmainwindow.c
OBJS3=	xmainwindow.o

SRCS6=	Ex3-8.c
OBJS6=	Ex3-8.o

SRCS7=	Ex3-9.c
OBJS7=	Ex3-9.o

PROGRAMS = xrowcolumn xform xmainwindow Ex3-8 Ex3-9

all::  $(PROGRAMS)

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

NormalProgramTarget(xrowcolumn,$(OBJS1),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xform,$(OBJS2),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xmainwindow,$(OBJS3),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(Ex3-8,$(OBJS6),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(Ex3-9,$(OBJS7),,$(LOCAL_LIBRARIES),)
