#
# example programs Imakefile
#
#

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

SRCS7=	xgetstring.c
OBJS7=	xgetstring.o

SRCS6=	xsetstring.c
OBJS6=	xsetstring.o

SRCS1=	xhello.c
OBJS1=	xhello.o

SRCS2=	xgoodbye.c
OBJS2=	xgoodbye.o

PROGRAMS = xhello xgoodbye xsetstring xgetstring

all::  $(PROGRAMS)

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

NormalProgramTarget(xgetstring,$(OBJS7),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xsetstring,$(OBJS6),,$(LOCAL_LIBRARIES),)

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

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