#
# example programs Imakefile
#
#

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

SRCS1=	xfileinput.c
OBJS1=	xfileinput.o

SRCS2=	xworkproc.c
OBJS2=	xworkproc.o

SRCS3=	xpipeinput.c
OBJS3=	xpipeinput.o

SRCS4=	xstdin.c
OBJS4=	xstdin.o

PROGRAMS = xfileinput xworkproc xpipeinput xstdin

all::  $(PROGRAMS)

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

NormalProgramTarget(xfileinput,$(OBJS1),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xworkproc,$(OBJS2),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xpipeinput,$(OBJS3),,$(LOCAL_LIBRARIES),)

NormalProgramTarget(xstdin,$(OBJS4),,$(LOCAL_LIBRARIES),)
