#
# this is a GNUmakefile.  It must be processed with GNU make.
#

TARGET_ARCH=
TOP=../..

# you should define the make variables LOBJS and HEADERS before the
# include directive.  LOBJS is a list of Library OBJects that belong
# in libiac++.a.  HEADERS is a list of public header files that belong
# in iac++/include.

LOBJS =  BitDI.o $(patsubst %.c,%.o,$(wildcard BIO-*.c)) \
	UcharDI.o $(patsubst %.c,%.o,$(wildcard UIO-*.c)) \
	IntDI.o $(patsubst %.c,%.o,$(wildcard IIO-*.c)) \
	FloatDI.o $(patsubst %.c,%.o,$(wildcard FIO-*.c)) \
	CplxDI.o $(patsubst %.c,%.o,$(wildcard CIO-*.c)) \
	RGBDI.o \
	FloatCI.o \
	FBI.o \
	Nbh.o


HEADERS=IntDI.h IntIOps.h \
	BitDI.h BitIOps.h \
	UcharDI.h UcharIOps.h \
	FloatDI.h FloatIOps.h \
	CplxDI.h CplxIOps.h \
	RGBDI.h RGBIOps.h \
	FloatCI.h \
	Image.h CoreImage.h ImageIter.h \
	AuxImage.h ImgComp.h ImgComp.c ImgRestrictAssn.h image_errors.h \
	BaseI.h BaseImageIter.h \
	ClosureI.h \
	Pixel.h \
    BaseDT.h DDTempl.h AuxDDTempl.h ClosureDT.h \
	IntConv.h BitConv.h UcharConv.h \
	FloatConv.h CplxConv.h \
    BaseNbh.h Nbh.h NbhOps.h ClosureNbh.h


SRCS=CoreImage.c AuxImage.c ImageIter.c \
	BaseI.c BaseImageIter.c \
	ConstI.c FuncI.h VectorI.h \
	ConstImageIter.c VectorImageIter.c \
	ClosureI.c \
	DDTempl.c AuxDDTempl.c InvDT.c FuncDT.c \
	Nbh.c InvNbh.c FuncNbh.c \
	../valueset/OpTable.h

DISTFILES = 	AuxDDTempl.c \
	AuxDDTempl.h \
	AuxImage.c \
	AuxImage.h \
	BaseDT.h \
	BaseI.c \
	BaseI.h \
	BaseImageIter.c \
	BaseImageIter.h \
	BaseNbh.h \
	BitDDTempl.c \
	BitDDTempl.h \
	BitDI.c \
	BitDI.h \
	ClosureDT.h \
	ClosureI.c \
	ClosureI.h \
	ClosureNbh.h \
	CplxDDTempl.c \
	CplxDDTempl.h \
	CplxDI.c \
	CplxDI.h \
	ConstI.c \
	ConstI.h \
	ConstImageIter.c \
	ConstImageIter.h \
	CoreImage.c \
	CoreImage.h \
	DDTempl.c \
	DDTempl.h \
	ErrorDT.h \
	ErrorI.h \
	FBI.c \
	FBI.h \
	FloatCI.c \
	FloatCI.h \
	FloatDDTempl.c \
	FloatDDTempl.h \
	FloatDI.c \
	FloatDI.h \
	FuncDT.c \
	FuncDT.h \
	FuncI.c \
	FuncI.h \
	FuncNbh.c \
	FuncNbh.h \
	GNUmakefile \
	Image.h \
	ImageIter.c \
	ImageIter.h \
	ImgComp.c \
	ImgComp.h \
	ImgRestrictAssn.c \
	ImgRestrictAssn.h \
	IntDDTempl.c \
	IntDDTempl.h \
	IntDI.c \
	IntDI.h \
	InvDT.c \
	InvDT.h \
	InvNbh.c \
	InvNbh.h \
	LazyImage.c \
	LazyImage.h \
	LazyInvConv.h \
	LazyXlationI.h \
	Nbh.c \
	Nbh.h \
	OtherImageIter.c \
	OtherImageIter.h \
	Pixel.h \
	RGBDI.c \
	RGBDI.h \
	UcharDDTempl.c \
	UcharDDTempl.h \
	UcharDI.c \
	UcharDI.h \
	VectorI.c \
	VectorI.h \
	VectorImageIter.c \
	VectorImageIter.h \
	add-image-operations.sh \
	bin-TF \
	bin-TO \
	bit-conv.desc \
	bit-operations.desc \
	build-from-stdin.perl \
	closure.c \
	cplx-conv.desc \
	cplx-operations.desc \
	display.h \
	float-conv.desc \
	float-operations.desc \
	c-gen-conv.perl \
	h-gen-conv.perl \
	c-gen-nbh.perl \
	h-gen-nbh.perl \
	gen-bo.perl \
	c-gen-ops.perl \
	h-gen-ops.perl \
	image_errors.h \
	img-templ-product \
	int-conv.desc \
	int-operations.desc \
	nbh-ops.desc \
	nbh-reduction \
	placebo1.c \
	placebo2.c \
	reduce_fn_nz \
	reduce_op_nz \
	restrict.c \
	restrict.h \
	rgb-operations.desc \
	templ-img-product \
	templ-templ-product \
	template-reduction \
	uchar-conv.desc \
	uchar-operations.desc \
	unary-op.templ

#	chi_contains.c \
#	IAAIO.h 

SIMPLETESTS=test000
TESTS=

OTHER_CFLAGS= -O

XTRACCFLAGS=

CLOSUREARGS = #-ptr./ptrepository -ptr../valueset/ptrepository
CLOSUREOBJS= placebo1.o placebo2.o closure.o
#CLOSUREOBJS= fred.o mary.o john.o
BLASTABLE_PTFILES = IA_ValueSet IA_Array \
	IA_BasePS IA_PSPred IA_Point IA_Set IA_PSIter

all:

lobjs: prep

include ${TOP}/src/gnumake.templ

# temporary stuff to override depot during the new-image experimental stages
INCLUDEFLAGS= -I. -I${INCDIR} ${EXTRAINCLUDES}
LDLIBS = -L${TOP}/lib ${OTHERLIBS} -liac++ -lm

prep: BIO UIO IIO FIO CIO
#	${MAKE} lib
	touch prep

lib: closure

depend: # ${GENERATED_CFILES}

closure: ${SRCS}

IntDI.o: IntIOps.h
BitDI.o:  BitIOps.h
UcharDI.o: UcharIOps.h
FloatDI.o: FloatIOps.h
CplxDI.o:  CplxIOps.h
RGBDI.o: RGBIOps.c RGBIOps.h
#
IntDDTempl.o: IntConv.c IntConv.h
BitDDTempl.o: BitConv.c BitConv.h
UcharDDTempl.o: UcharConv.c UcharConv.h
FloatDDTempl.o: FloatConv.c FloatConv.h
CplxDDTempl.o: CplxConv.c CplxConv.h
#
Nbh.o: NbhOps.c NbhOps.h

GENBOPMETA = ./gen-bo.perl
BOPMETAFILES = $(foreach pw,pw sr,$(foreach comm,c nc,$(foreach arity,II Is sI,$(foreach isop,op fn,opgen-templs/b${pw}_${comm}_${arity}_${isop}))))
UOPMETAFILES = opgen-templs/upw
REDMETAFILES = $(foreach op,op fn,opgen-templs/reduce_${op}_nz)
OPMETAFILES = ${BOPMETAFILES} ${UOPMETAFILES} ${REDMETAFILES}

${BOPMETAFILES}: ${GENBOPMETA}
	- mkdir opgen-templs
	for pw in pw sr; do for comm in c nc; do for arity in II Is sI; do for optype in op fn; do \
	${PERL} ${GENBOPMETA} -$$pw -$$comm -$$arity -$$optype > opgen-templs/b$${pw}_$${comm}_$${arity}_$${optype}; \
	done; done; done; done

opgen-templs/upw: unary-op.templ
	- mkdir opgen-templs
	rm -f $@
	cp unary-op.templ $@

${REDMETAFILES}: reduce_op_nz reduce_fn_nz
	- mkdir opgen-templs
	for op in op fn; do \
		rm -f opgen-templs/reduce_$${op}_nz; \
		(cp reduce_$${op}_nz opgen-templs/reduce_$${op}_nz); \
	done

GENCOPS = ./c-gen-ops.perl
GENHOPS = ./h-gen-ops.perl
BUILDIMOPS = build-from-stdin.perl

AllImgOps.h: $(foreach type, bit uchar int float cplx rgb, $(type)-operations.desc) ${GENHOPS}
	rm -f $@
	(${PERL} ${GENHOPS} -friends bit-operations.desc  ;	\
	${PERL} ${GENHOPS} -friends uchar-operations.desc ;	\
	${PERL} ${GENHOPS} -friends int-operations.desc   ;	\
	${PERL} ${GENHOPS} -friends float-operations.desc ;	\
	${PERL} ${GENHOPS} -friends cplx-operations.desc  ;	\
	${PERL} ${GENHOPS} -friends rgb-operations.desc		\
	)> $@
	chmod a-w $@

IIO: int-operations.desc ${OPMETAFILES} ${GENCOPS} IntIOps.h
	rm -f IIO-*.[co]
	sh add-image-operations.sh int-operations.desc ${WORKLIB} \
		"${PERL}" "${GENCOPS}" \
		"${BUILDIMOPS}" "${MAKE}" "${AR}" "${ARL}"
	chmod a-w IIO-*.c
	touch $@

IntIOps.h: int-operations.desc ${GENHOPS}
	rm -f $@
	${PERL} ${GENHOPS} < int-operations.desc > $@
	chmod a-w $@

BIO: bit-operations.desc ${OPMETAFILES} ${GENCOPS} BitIOps.h
	rm -f BIO-*.[co]
	sh add-image-operations.sh bit-operations.desc ${WORKLIB} \
		"${PERL}" "${GENCOPS}" \
		"${BUILDIMOPS}" "${MAKE}" "${AR}" "${ARL}"
	chmod a-w BIO-*.c
	touch $@

BitIOps.h: bit-operations.desc ${GENHOPS}
	rm -f $@
	${PERL} ${GENHOPS} < bit-operations.desc > $@
	chmod a-w $@

UIO: uchar-operations.desc ${OPMETAFILES} ${GENCOPS} UcharIOps.h
	rm -f UIO-*.[co]
	sh add-image-operations.sh uchar-operations.desc ${WORKLIB} \
		"${PERL}" "${GENCOPS}" \
		"${BUILDIMOPS}" "${MAKE}" "${AR}" "${ARL}"
	chmod a-w UIO-*.c
	touch $@

UcharIOps.h: uchar-operations.desc ${GENHOPS}
	rm -f $@
	${PERL} ${GENHOPS} < uchar-operations.desc > $@
	chmod a-w $@

FIO: float-operations.desc ${OPMETAFILES} ${GENCOPS} FloatIOps.h
	rm -f FIO-*.[co]
	sh add-image-operations.sh float-operations.desc ${WORKLIB} \
		"${PERL}" "${GENCOPS}" \
		"${BUILDIMOPS}" "${MAKE}" "${AR}" "${ARL}"
	chmod a-w FIO-*.c
	touch $@

FloatIOps.h: float-operations.desc ${GENHOPS}
	rm -f $@
	${PERL} ${GENHOPS} < float-operations.desc > $@
	chmod a-w $@

CIO: cplx-operations.desc ${OPMETAFILES} ${GENCOPS} CplxIOps.h
	rm -f CIO-*.[co]
	sh add-image-operations.sh cplx-operations.desc ${WORKLIB} \
		"${PERL}" "${GENCOPS}" \
		"${BUILDIMOPS}" "${MAKE}" "${AR}" "${ARL}"
	chmod a-w CIO-*.c
	touch $@

CplxIOps.h: cplx-operations.desc ${GENHOPS}
	rm -f $@
	${PERL} ${GENHOPS} < cplx-operations.desc > $@
	chmod a-w $@

RGBIOps.c: rgb-operations.desc ${OPMETAFILES} ${GENCOPS}
	rm -f $@
	${PERL} ${GENCOPS} < rgb-operations.desc
	chmod a-w $@

RGBIOps.h: rgb-operations.desc ${GENHOPS}
	rm -f $@
	${PERL} ${GENHOPS} < rgb-operations.desc > $@
	chmod a-w $@

#
#
#

# all the image operation header files
fullsrc:: $(foreach type,Bit Uchar Int Float Cplx RGB, $(type)IOps.h) AllImgOps.h
	/bin/true

# one of the image operation source files
fullsrc::	RGBIOps.c
	/bin/true

# the rest of the image operation source files.
# damn this is tricky.  It's the only one with actions, and that's why the touch works.
fullsrc-a: $(foreach type,bit uchar int float cplx rgb, $(type)-operations.desc) \
	${OPMETAFILES} ${GENCOPS} ${GENHOPS}
	rm -f [BUIFC]IO-*.c
	set -vx; for spam in "bit IA_Bit" "uchar u_char" "int int" "float float" "cplx complex"; do \
		set $$spam; \
		tmpfile=/tmp/fullsrc$$$$-list; \
		${PERL} ${GENCOPS} < $$1-operations.desc > $$tmpfile; \
		chmod a-w `cat $$tmpfile`; \
		rm -f $$tmpfile; \
	done
	touch $@

fullsrc:: fullsrc-a
	/bin/true

#
#
#

CONVMETAFILES = img-templ-product templ-img-product templ-templ-product template-reduction bin-TO bin-TF

ALLCONVDESCS=${patsubst %,%-conv.desc,bit uchar int float cplx}

AllConv.h: h-gen-conv.perl ${ALLCONVDESCS}
	rm -f $@
	(${PERL} ./h-gen-conv.perl -friends bit-conv.desc ;	\
	${PERL} ./h-gen-conv.perl -friends uchar-conv.desc ;	\
	${PERL} ./h-gen-conv.perl -friends int-conv.desc ;	\
	${PERL} ./h-gen-conv.perl -friends float-conv.desc ;	\
	${PERL} ./h-gen-conv.perl -friends cplx-conv.desc	\
	)> $@
	chmod a-w $@

IntConv.c: c-gen-conv.perl ${CONVMETAFILES} int-conv.desc
	rm -f $@
	${PERL} ./c-gen-conv.perl < int-conv.desc > $@
	chmod a-w $@

IntConv.h: h-gen-conv.perl int-conv.desc
	rm -f $@
	${PERL} ./h-gen-conv.perl < int-conv.desc > $@
	chmod a-w $@

BitConv.c: c-gen-conv.perl ${CONVMETAFILES} bit-conv.desc
	rm -f $@
	${PERL} ./c-gen-conv.perl < bit-conv.desc  > $@
	chmod a-w $@

BitConv.h: h-gen-conv.perl bit-conv.desc
	rm -f $@
	${PERL} ./h-gen-conv.perl  < bit-conv.desc > $@
	chmod a-w $@

UcharConv.c: c-gen-conv.perl ${CONVMETAFILES} uchar-conv.desc
	rm -f $@
	${PERL} ./c-gen-conv.perl < uchar-conv.desc  > $@
	chmod a-w $@

UcharConv.h: h-gen-conv.perl uchar-conv.desc
	rm -f $@
	${PERL} ./h-gen-conv.perl  < uchar-conv.desc > $@
	chmod a-w $@

FloatConv.c: c-gen-conv.perl ${CONVMETAFILES} float-conv.desc
	rm -f $@
	${PERL} ./c-gen-conv.perl < float-conv.desc  > $@
	chmod a-w $@

FloatConv.h: h-gen-conv.perl float-conv.desc
	rm -f $@
	${PERL} ./h-gen-conv.perl  < float-conv.desc > $@
	chmod a-w $@

CplxConv.c: c-gen-conv.perl ${CONVMETAFILES} cplx-conv.desc
	rm -f $@
	${PERL} ./c-gen-conv.perl < cplx-conv.desc  > $@
	chmod a-w $@

CplxConv.h: h-gen-conv.perl cplx-conv.desc
	rm -f $@
	${PERL} ./h-gen-conv.perl  < cplx-conv.desc > $@
	chmod a-w $@

#
#
#

fullsrc:: $(foreach type,Bit Uchar Int Float Cplx,${type}Conv.c ${type}Conv.h)\
		AllConv.h
	/bin/true

#
#
#

NEIGHBMETAFILES=nbh-reduction

NbhOps.c:${NEIGHBMETAFILES}

NbhOps.h: h-gen-nbh.perl nbh-ops.desc
	rm -f $@
	${PERL} ./h-gen-nbh.perl < nbh-ops.desc > $@
	chmod a-w $@

NbhOps.c: c-gen-nbh.perl nbh-ops.desc
	rm -f $@
	${PERL} ./c-gen-nbh.perl < nbh-ops.desc > $@
	chmod a-w $@

#
#
#

fullsrc:: NbhOps.c NbhOps.h
	/bin/true

#
#
#

print:
	enscript -2rGPps335 ${HEADERS} ${SRCS}

spotless:
	rm -rf opgen-templs
	rm -f AllConv.h IntConv.[ch] BitConv.[ch] \
		UcharConv.[ch] FloatConv.[ch] \
		CplxConv.[ch] \
		NbhOps.[ch] \
		IntIOps.h BitIOps.h UcharIOps.h FloatIOps.h \
		CplxIOps.h RGBIOps.h \
		[BUIFC]IO-*.c [BUIFC]IO RGBIOps.c 


distfiles:  IntIOps.h \
	 BitIOps.h \
	UcharIOps.h \
	FloatIOps.h \
	CplxIOps.h \
	RGBIOps.c RGBIOps.h \
	AllConv.h \
	IntConv.c IntConv.h \
	BitConv.c BitConv.h \
	UcharConv.c UcharConv.h \
	FloatConv.c FloatConv.h \
	CplxConv.c CplxConv.h \
	NbhOps.c NbhOps.h


checkin:
	ci $(SRCS) $(HEADRS)

# weird ObjectCenter support

#ifneq (${LOBJS},)
#
#LSRCS = ${patsubst %.o,%.c,${LOBJS}}
#oclib_src:
#	!load ${CCFLAGS} ${LSRCS}
#
#oclib_obj:
#	!load ${CCFLAGS} ${LOBJS}
#
#OCSRCS = ${patsubst %.o,%_src,${LOBJS}}
#OCOBJS = ${patsubst %.o,%_obj,${LOBJS}}
#
#${OCSRCS}: %_src: %.c
#	!load ${CCFLAGS} $<
#
#${OCOBJS}: %_obj: %.o
#	!load ${CCFLAGS} $<
#endif

# dependencies
BitDI.o : BitDI.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ClosureI.h ErrorI.h ImageIter.h BaseImageIter.h \
  ${INCDIR}/PSIter.h ${INCDIR}/BasePSIter.h display.h restrict.h 
BIO-__ad.o : BIO-__ad.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-__eq.o : BIO-__eq.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-__er.o : BIO-__er.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-__nt.o : BIO-__nt.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-__or.o : BIO-__or.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-cvcomplex.o : BIO-cvcomplex.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-cvfloat.o : BIO-cvfloat.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-cvint.o : BIO-cvint.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-reductions.o : BIO-reductions.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-strict_ne.o : BIO-strict_ne.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
BIO-u_char.o : BIO-u_char.c BitDI.h ${INCDIR}/Bit.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h BitIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UcharDI.o : UcharDI.c VectorI.h BaseI.h ${INCDIR}/ia.h ${INCDIR}/compat.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPoint.h ${INCDIR}/DblPoint.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/Array.h ${INCDIR}/PSIter.h ${INCDIR}/BasePSIter.h \
  ${INCDIR}/BasePS.h ${INCDIR}/pset_errors.h ${INCDIR}/IntPS.h ${INCDIR}/DblPS.h \
  ${INCDIR}/SetStructure.h UcharDI.h Image.h CoreImage.h Pixel.h AuxImage.h \
  ${INCDIR}/Closure.h ${INCDIR}/Bit.h ImgComp.h ImgRestrictAssn.h UcharIOps.h \
  ConstI.h image_errors.h ClosureI.h FuncI.h ErrorI.h ImageIter.h BaseImageIter.h \
  BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h CplxDI.h CplxIOps.h \
  RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h restrict.h 
UIO-X_eq.o : UIO-X_eq.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-X_ge.o : UIO-X_ge.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-X_gt.o : UIO-X_gt.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-X_le.o : UIO-X_le.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-X_lt.o : UIO-X_lt.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-X_ne.o : UIO-X_ne.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__aa.o : UIO-__aa.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__ad.o : UIO-__ad.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__co.o : UIO-__co.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__dv.o : UIO-__dv.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__eq.o : UIO-__eq.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__er.o : UIO-__er.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__ge.o : UIO-__ge.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__gt.o : UIO-__gt.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__le.o : UIO-__le.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__ls.o : UIO-__ls.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__lt.o : UIO-__lt.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__md.o : UIO-__md.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__mi.o : UIO-__mi.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__ml.o : UIO-__ml.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__nt.o : UIO-__nt.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__oo.o : UIO-__oo.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__or.o : UIO-__or.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__pl.o : UIO-__pl.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-__rs.o : UIO-__rs.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-cvcomplex.o : UIO-cvcomplex.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-cvfloat.o : UIO-cvfloat.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-cvint.o : UIO-cvint.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-minmax.o : UIO-minmax.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-reductions.o : UIO-reductions.c UcharDI.h ${INCDIR}/compat.h Image.h \
  ${INCDIR}/Set.h ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-strict_ne.o : UIO-strict_ne.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-to_bit.o : UIO-to_bit.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
UIO-unaries.o : UIO-unaries.c UcharDI.h ${INCDIR}/compat.h Image.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/ia.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h UcharIOps.h \
  VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ../valueset/OpTable.h 
IntDI.o : IntDI.c ${INCDIR}/Closure.h ${INCDIR}/PSIter.h ${INCDIR}/BasePSIter.h \
  ${INCDIR}/BasePS.h ${INCDIR}/ia.h ${INCDIR}/compat.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPoint.h ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h \
  ${INCDIR}/IntPS.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h ${INCDIR}/DblPS.h \
  ${INCDIR}/SetStructure.h ${INCDIR}/Array.h IntDI.h Image.h CoreImage.h \
  BaseI.h Pixel.h AuxImage.h ${INCDIR}/Bit.h ImgComp.h ImgRestrictAssn.h IntIOps.h \
  ImageIter.h BaseImageIter.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  image_errors.h restrict.h VectorI.h 
IIO-X_eq.o : IIO-X_eq.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-X_ge.o : IIO-X_ge.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-X_gt.o : IIO-X_gt.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-X_le.o : IIO-X_le.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-X_lt.o : IIO-X_lt.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-X_ne.o : IIO-X_ne.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__aa.o : IIO-__aa.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__ad.o : IIO-__ad.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__co.o : IIO-__co.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__dv.o : IIO-__dv.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__eq.o : IIO-__eq.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__er.o : IIO-__er.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__ge.o : IIO-__ge.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__gt.o : IIO-__gt.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__le.o : IIO-__le.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__ls.o : IIO-__ls.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__lt.o : IIO-__lt.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__md.o : IIO-__md.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__mi.o : IIO-__mi.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__ml.o : IIO-__ml.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__nt.o : IIO-__nt.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__oo.o : IIO-__oo.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__or.o : IIO-__or.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__pl.o : IIO-__pl.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-__rs.o : IIO-__rs.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-cvcomplex.o : IIO-cvcomplex.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-cvfloat.o : IIO-cvfloat.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-minmax.o : IIO-minmax.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-reductions.o : IIO-reductions.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-strict_ne.o : IIO-strict_ne.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-to_bit.o : IIO-to_bit.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-to_uchar.o : IIO-to_uchar.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
IIO-unaries.o : IIO-unaries.c IntDI.h ${INCDIR}/compat.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/Point.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  CoreImage.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h FloatDI.h \
  FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  IntIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FloatDI.o : FloatDI.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ClosureI.h ErrorI.h ImageIter.h \
  BaseImageIter.h ${INCDIR}/PSIter.h ${INCDIR}/BasePSIter.h restrict.h 
FIO-X_eq.o : FIO-X_eq.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-X_ge.o : FIO-X_ge.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-X_gt.o : FIO-X_gt.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-X_le.o : FIO-X_le.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-X_lt.o : FIO-X_lt.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-X_ne.o : FIO-X_ne.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__aa.o : FIO-__aa.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__dv.o : FIO-__dv.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__eq.o : FIO-__eq.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__ge.o : FIO-__ge.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__gt.o : FIO-__gt.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__le.o : FIO-__le.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__lt.o : FIO-__lt.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__mi.o : FIO-__mi.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__ml.o : FIO-__ml.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__nt.o : FIO-__nt.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__oo.o : FIO-__oo.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-__pl.o : FIO-__pl.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-libm.o : FIO-libm.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-minmax.o : FIO-minmax.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-reduce.o : FIO-reduce.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-strict_ne.o : FIO-strict_ne.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-to_int.o : FIO-to_int.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FIO-to_uchar.o : FIO-to_uchar.c FloatDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  FloatIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CplxDI.o : CplxDI.c VectorI.h BaseI.h ${INCDIR}/ia.h ${INCDIR}/compat.h \
  ${INCDIR}/Point.h ${INCDIR}/IntPoint.h ${INCDIR}/DblPoint.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h ${INCDIR}/Array.h ConstI.h image_errors.h ClosureI.h \
  ErrorI.h ImageIter.h BaseImageIter.h Image.h CoreImage.h ${INCDIR}/IntPS.h \
  ${INCDIR}/BasePS.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h ImgComp.h ImgRestrictAssn.h \
  BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h ${INCDIR}/PSIter.h \
  ${INCDIR}/BasePSIter.h restrict.h 
CIO-X_eq.o : CIO-X_eq.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CIO-X_ne.o : CIO-X_ne.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CIO-__dv.o : CIO-__dv.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CIO-__eq.o : CIO-__eq.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CIO-__mi.o : CIO-__mi.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CIO-__ml.o : CIO-__ml.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CIO-__pl.o : CIO-__pl.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CIO-math.o : CIO-math.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CIO-reduce.o : CIO-reduce.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
CIO-strict_ne.o : CIO-strict_ne.c CplxDI.h Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPS.h ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/DblPoint.h \
  ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h \
  CplxIOps.h VectorI.h ConstI.h image_errors.h ImageIter.h BaseImageIter.h FBI.h \
  DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
RGBDI.o : RGBDI.c ${INCDIR}/Closure.h ${INCDIR}/PSIter.h ${INCDIR}/BasePSIter.h \
  ${INCDIR}/BasePS.h ${INCDIR}/ia.h ${INCDIR}/compat.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPoint.h ${INCDIR}/DblPoint.h ${INCDIR}/pset_errors.h \
  ${INCDIR}/IntPS.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h ${INCDIR}/DblPS.h \
  ${INCDIR}/SetStructure.h ${INCDIR}/Array.h RGBDI.h ${INCDIR}/RGB.h \
  Image.h CoreImage.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Bit.h ImgComp.h \
  ImgRestrictAssn.h RGBIOps.h VectorI.h ConstI.h image_errors.h ClosureI.h ErrorI.h \
  ImageIter.h BaseImageIter.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h \
  IntIOps.h FloatDI.h FloatIOps.h CplxDI.h CplxIOps.h FloatCI.h restrict.h RGBIOps.c \
  FBI.h DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h \
  AllImgOps.h ../valueset/OpTable.h 
FloatCI.o : FloatCI.c FloatCI.h ${INCDIR}/DblPS.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h ${INCDIR}/DblPoint.h ${INCDIR}/Point.h \
  ${INCDIR}/IntPoint.h ${INCDIR}/BasePS.h ${INCDIR}/pset_errors.h \
  ${INCDIR}/SetStructure.h ${INCDIR}/Array.h ${INCDIR}/IntPS.h Image.h \
  CoreImage.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h \
  ImgComp.h ImgRestrictAssn.h ClosureI.h restrict.h VectorI.h 
FBI.o : FBI.c FBI.h ${INCDIR}/Bit.h ${INCDIR}/RGB.h ${INCDIR}/compat.h \
  ${INCDIR}/IntPoint.h ${INCDIR}/ia.h ${INCDIR}/Point.h ${INCDIR}/Set.h \
  ${INCDIR}/BaseSet.h Image.h CoreImage.h ${INCDIR}/DblPoint.h ${INCDIR}/IntPS.h \
  ${INCDIR}/BasePS.h ${INCDIR}/pset_errors.h ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h \
  ${INCDIR}/Array.h BaseI.h Pixel.h AuxImage.h ${INCDIR}/Closure.h ImgComp.h \
  ImgRestrictAssn.h BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h \
  FloatDI.h FloatIOps.h CplxDI.h CplxIOps.h RGBDI.h RGBIOps.h FloatCI.h DDTempl.h \
  BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h NbhOps.h AllConv.h AllImgOps.h \
  ${INCDIR}/PSIter.h ${INCDIR}/BasePSIter.h ConstI.h image_errors.h VectorI.h \
  ImageIter.h BaseImageIter.h InvDT.h BitConv.c UcharConv.c IntConv.c FloatConv.c \
  CplxConv.c 
Nbh.o : Nbh.c Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h ${INCDIR}/ia.h \
  ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/pset_errors.h \
  ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h ${INCDIR}/Array.h BaseI.h \
  Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h ImgComp.h ImgRestrictAssn.h \
  BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h ImageIter.h \
  BaseImageIter.h VectorI.h ${INCDIR}/PSIter.h ${INCDIR}/BasePSIter.h \
  Nbh.h BaseNbh.h NbhOps.h InvNbh.h ClosureNbh.h FuncNbh.h image_errors.h NbhOps.c 
placebo1.o : placebo1.c ${INCDIR}/Array.h ${INCDIR}/Point.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/ia.h ${INCDIR}/compat.h ${INCDIR}/DblPoint.h ${INCDIR}/Bit.h \
  ${INCDIR}/RGB.h 
placebo2.o : placebo2.c ${INCDIR}/Point.h ${INCDIR}/IntPoint.h ${INCDIR}/ia.h \
  ${INCDIR}/compat.h ${INCDIR}/DblPoint.h ${INCDIR}/Bit.h ${INCDIR}/RGB.h \
  ${INCDIR}/ClosurePS.h ${INCDIR}/BasePS.h ${INCDIR}/pset_errors.h \
  ${INCDIR}/Set.h ${INCDIR}/BaseSet.h ${INCDIR}/SetStructure.h ${INCDIR}/Array.h \
  ${INCDIR}/IntPS.h ${INCDIR}/PSIter.h ${INCDIR}/BasePSIter.h ${INCDIR}/DblPS.h 
closure.o : closure.c Image.h ${INCDIR}/Set.h ${INCDIR}/BaseSet.h ${INCDIR}/ia.h \
  ${INCDIR}/compat.h CoreImage.h ${INCDIR}/Point.h ${INCDIR}/IntPoint.h \
  ${INCDIR}/DblPoint.h ${INCDIR}/IntPS.h ${INCDIR}/BasePS.h ${INCDIR}/pset_errors.h \
  ${INCDIR}/DblPS.h ${INCDIR}/SetStructure.h ${INCDIR}/Array.h BaseI.h \
  Pixel.h AuxImage.h ${INCDIR}/Closure.h ${INCDIR}/Bit.h ImgComp.h ImgRestrictAssn.h \
  BitDI.h BitIOps.h UcharDI.h UcharIOps.h IntDI.h IntIOps.h FloatDI.h FloatIOps.h \
  CplxDI.h CplxIOps.h RGBDI.h ${INCDIR}/RGB.h RGBIOps.h FloatCI.h ImageIter.h \
  BaseImageIter.h DDTempl.h BaseDT.h ClosureDT.h AuxDDTempl.h Nbh.h BaseNbh.h \
  NbhOps.h ClosureNbh.h 
