# Makefile for machine dependent X routines
#
#	created by sue, Aug 1986

DEPEND=../../../makedepend/makedepend

HFILES = mfb.h 
SRCS =	 mfbgc.c mfbwindow.c mfbfont.c \
	 mfbfillrct.c mfbpntwin.c maskbits.c mfbpixmap.c \
	 mfbimage.c mfbline.c mfbbres.c mfbhrzvert.c \
	 mfbpushpxl.c mfbclipsp.c \
	 mfbfillsp.c mfbsetsp.c mfbscrinit.c mfbclip.c mfbbitblt.c \
	 mfbgetsp.c mfbpolypnt.c \
	 mfbplygblt.c mfbimggblt.c mfbcmap.c \
	 mfbpntarea.c mfbtile.c

OFILES = mfbgc.o mfbwindow.o mfbfont.o \
	 mfbfillrct.o mfbpntwin.o maskbits.o mfbpixmap.o \
	 mfbimage.o mfbline.o mfbbres.o mfbhrzvert.o \
	 mfbpushpxl.o mfbclipsp.o \
	 mfbfillsp.o mfbsetsp.o mfbscrinit.o mfbclip.o mfbbitblt.o \
	 mfbgetsp.o mfbpolypnt.o \
	 mfbpgbwht.o mfbpgbblak.o mfbpgbinv.o \
	 mfbigbwht.o mfbigbblak.o mfbcmap.o \
	 mfbpawhite.o mfbpablack.o mfbpainv.o mfbtile.o

CDEBUGFLAGS = -g
INCLUDES = -I.  -I../../include  -I../../../include

CFLAGS = $(CDEBUGFLAGS) $(INCLUDES)

DDXLIB = libmfb.a

all:	$(DDXLIB)

$(DDXLIB): $(OFILES)
	@rm -f $(DDXLIB)
	ar cr $(DDXLIB) $(OFILES)
	ranlib $(DDXLIB)

nop:
	make CDEBUGFLAGS=

get:
	co -q RCS/*

buildtree:
	@echo ${WHEREAMI}

.c.o:	
	@rm -f $*.o
	${CC} ${CFLAGS} -c $*.c
	
mfbpntarea.o mfbimggblt.o mfbplygblt.o:
	touch $@

mfbpgbwht.o: mfbplygblt.c mfbplygblt.o
	rm -f mfbpgbwht.o mfbpgbwht.c
	cp mfbplygblt.c mfbpgbwht.c
	cc -DMFBPOLYGLYPHBLT=mfbPolyGlyphBltWhite \
	   -DOPEQ=\|=  $(CFLAGS) -c mfbpgbwht.c
	rm -f mfbpgbwht.c

mfbpgbblak.o: mfbplygblt.c mfbplygblt.o
	rm -f mfbpgbblak.o mfbpgbblak.c
	cp mfbplygblt.c mfbpgbblak.c
	cc -DMFBPOLYGLYPHBLT=mfbPolyGlyphBltBlack \
	   -DOPEQ=\&=~ $(CFLAGS) -c mfbpgbblak.c
	rm -f mfbpgbblak.c

mfbpgbinv.o: mfbplygblt.c mfbplygblt.o
	rm -f mfbpgbinv.o mfbpgbinv.c
	cp mfbplygblt.c mfbpgbinv.c
	cc -DMFBPOLYGLYPHBLT=mfbPolyGlyphBltInvert \
	   -DOPEQ=\^=  $(CFLAGS) -c mfbpgbinv.c
	rm -f mfbpgbinv.c

mfbigbwht.o: mfbimggblt.c mfbimggblt.o
	rm -f mfbigbwht.o mfbigbwht.c
	cp mfbimggblt.c mfbigbwht.c
	cc -DMFBIMAGEGLYPHBLT=mfbImageGlyphBltWhite \
	   -DOPEQ=\|=  $(CFLAGS) -c mfbigbwht.c
	rm -f mfbigbwht.c

mfbigbblak.o: mfbimggblt.c mfbimggblt.o
	rm -f mfbigbblak.o mfbigbblak.c
	cp mfbimggblt.c mfbigbblak.c
	cc -DMFBIMAGEGLYPHBLT=mfbImageGlyphBltBlack \
	   -DOPEQ=\&=~ $(CFLAGS) -c mfbigbblak.c
	rm -f mfbigbblak.c

mfbpawhite.o: mfbpntarea.c mfbpntarea.o
	rm -f mfbpawhite.o mfbpawhite.c
	cp mfbpntarea.c mfbpawhite.c
	cc -DMFBSOLIDFILLAREA=mfbSolidWhiteArea \
	   -DMFBSTIPPLEFILLAREA=mfbStippleWhiteArea \
	   -DOPEQ=\|=  -DEQWHOLEWORD=\=~0 \
	   $(CFLAGS) -c mfbpawhite.c
	rm -f mfbpawhite.c

mfbpablack.o: mfbpntarea.c mfbpntarea.o
	rm -f mfbpablack.o mfbpablack.c
	cp mfbpntarea.c mfbpablack.c
	cc -DMFBSOLIDFILLAREA=mfbSolidBlackArea \
	   -DMFBSTIPPLEFILLAREA=mfbStippleBlackArea \
	   -DOPEQ=\&=~ -DEQWHOLEWORD=\=0 \
	   $(CFLAGS) -c mfbpablack.c
	rm -f mfbpablack.c

mfbpainv.o: mfbpntarea.c mfbpntarea.o
	rm -f mfbpainv.o mfbpainv.c
	cp mfbpntarea.c mfbpainv.c
	cc -DMFBSOLIDFILLAREA=mfbSolidInvertArea \
	   -DMFBSTIPPLEFILLAREA=mfbStippleInvertArea \
	   -DOPEQ=\^=  -DEQWHOLEWORD=\^=~0 \
	   $(CFLAGS) -c mfbpainv.c
	rm -f mfbpainv.c

clean:
	rm -f *.o *.a ,* *~ *.bak *.BAK core


lint:
	lint -Clibmfb $(INCLUDES) -DMFBPOLYGLYPHBLT=mfbPolyGlyphBltWhite \
	   -DMFBIMAGEGLYPHBLT=mfbImageGlyphBltWhite -DEQWHOLEWORD=\=~0 \\
	   -DOPEQ=\|= $(SRCS)  > lint.out

# RCS checkin
#	ci -u Makefile $(SRCS) $(HFILES)
ci:
	ci -u -q -m"Version 1" -n"R1" -t"RCSdescrip" Makefile $(SRCS) \
		$(HFILES)

release:
	-mkdir $$RLS/bin
	cp Makefile $(HFILES) $(SRCS) $(DEST)
	cp $(INLINE) $$RLS/bin

install:
	$(PUBLISH) $$PUBDIR/lib $(PAINTLIB)
	ranlib $$PUBDIR/lib/$(PAINTLIB)

tags: $(SRCS)
	ctags *.c
	ctags -x *.c > TAGS

depend:
	${DEPEND} -v -I. ${CFLAGS} -s'# DO NOT DELETE' ${SRCS}

# DO NOT DELETE THIS LINE -- make depend uses it

mfbgc.o: ../../../include/X.h ../../../include/Xmd.h
mfbgc.o: ../../../include/Xproto.h
# ../../../include/Xproto.h includes:
#	Xmd.h
#	Xprotostr.h
mfbgc.o: ../../../include/Xmd.h ../../../include/Xprotostr.h
# ../../../include/Xprotostr.h includes:
#	Xmd.h
mfbgc.o: ../../../include/Xmd.h ../../include/dixfontstr.h
# ../../include/dixfontstr.h includes:
#	dixfont.h
#	font.h
#	misc.h
mfbgc.o: ../../include/dixfont.h ../../include/font.h ../../include/misc.h
# ../../include/misc.h includes:
#	os.h
mfbgc.o: ../../include/os.h
# ../../include/os.h includes:
#	misc.h
mfbgc.o: ../../include/fontstruct.h
# ../../include/fontstruct.h includes:
#	font.h
#	misc.h
mfbgc.o: ../../include/font.h ../../include/misc.h ../../include/os.h
mfbgc.o: ../../include/gcstruct.h
# ../../include/gcstruct.h includes:
#	gc.h
#	miscstruct.h
#	region.h
#	pixmap.h
#	screenint.h
#	dixfont.h
mfbgc.o: ../../include/gc.h ../../include/miscstruct.h
# ../../include/miscstruct.h includes:
#	misc.h
mfbgc.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbgc.o: ../../include/pixmap.h ../../include/screenint.h
mfbgc.o: ../../include/dixfont.h ../../include/windowstr.h
# ../../include/windowstr.h includes:
#	window.h
#	pixmapstr.h
#	region.h
#	cursor.h
#	property.h
#	resource.h
#	dix.h
#	miscstruct.h
mfbgc.o: ../../include/window.h ../../include/pixmapstr.h
# ../../include/pixmapstr.h includes:
#	pixmap.h
#	screenint.h
#	misc.h
mfbgc.o: ../../include/pixmap.h ../../include/screenint.h
mfbgc.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbgc.o: ../../include/cursor.h ../../include/property.h
mfbgc.o: ../../include/resource.h ../../include/dix.h
# ../../include/dix.h includes:
#	gc.h
mfbgc.o: ../../include/gc.h ../../include/miscstruct.h ../../include/misc.h
mfbgc.o: ../../include/os.h ../../include/pixmapstr.h ../../include/pixmap.h
mfbgc.o: ../../include/screenint.h ../../include/misc.h ../../include/os.h
mfbgc.o: ../../include/scrnintstr.h
# ../../include/scrnintstr.h includes:
#	screenint.h
#	misc.h
#	region.h
#	pixmap.h
#	gc.h
#	colormap.h
mfbgc.o: ../../include/screenint.h ../../include/misc.h ../../include/os.h
mfbgc.o: ../../include/region.h ../../include/pixmap.h ../../include/gc.h
mfbgc.o: ../../include/colormap.h ../../include/region.h mfb.h
# mfb.h includes:
#	pixmap.h
#	region.h
#	gc.h
#	colormap.h
#	miscstruct.h
mfbgc.o: ../../include/pixmap.h ../../include/region.h ../../include/gc.h
mfbgc.o: ../../include/colormap.h ../../include/miscstruct.h
mfbgc.o: ../../include/misc.h ../../include/os.h ../../include/mistruct.h
# ../../include/mistruct.h includes:
#	mi.h
#	miscstruct.h
mfbgc.o: ../../include/mi.h
# ../../include/mi.h includes:
#	region.h
mfbgc.o: ../../include/region.h ../../include/miscstruct.h
mfbgc.o: ../../include/misc.h ../../include/os.h maskbits.h
# maskbits.h includes:
#	X.h
#	Xmd.h
mfbgc.o: ../../../include/X.h ../../../include/Xmd.h
mfbwindow.o: ../../../include/X.h ../../include/scrnintstr.h
mfbwindow.o: ../../include/screenint.h ../../include/misc.h
mfbwindow.o: ../../include/os.h ../../include/region.h ../../include/pixmap.h
mfbwindow.o: ../../include/gc.h ../../include/colormap.h
mfbwindow.o: ../../include/windowstr.h ../../include/window.h
mfbwindow.o: ../../include/pixmapstr.h ../../include/pixmap.h
mfbwindow.o: ../../include/screenint.h ../../include/misc.h
mfbwindow.o: ../../include/os.h ../../include/region.h ../../include/cursor.h
mfbwindow.o: ../../include/property.h ../../include/resource.h
mfbwindow.o: ../../include/dix.h ../../include/gc.h
mfbwindow.o: ../../include/miscstruct.h ../../include/misc.h
mfbwindow.o: ../../include/os.h mfb.h ../../include/pixmap.h
mfbwindow.o: ../../include/region.h ../../include/gc.h
mfbwindow.o: ../../include/colormap.h ../../include/miscstruct.h
mfbwindow.o: ../../include/misc.h ../../include/os.h ../../include/mistruct.h
mfbwindow.o: ../../include/mi.h ../../include/region.h
mfbwindow.o: ../../include/miscstruct.h ../../include/misc.h
mfbwindow.o: ../../include/os.h ../../include/regionstr.h
# ../../include/regionstr.h includes:
#	region.h
#	miscstruct.h
mfbwindow.o: ../../include/region.h ../../include/miscstruct.h
mfbwindow.o: ../../include/misc.h ../../include/os.h
mfbfont.o: ../../../include/X.h ../../../include/Xmd.h
mfbfont.o: ../../../include/Xproto.h ../../../include/Xmd.h
mfbfont.o: ../../../include/Xprotostr.h ../../../include/Xmd.h
mfbfont.o: ../../include/fontstruct.h ../../include/font.h
mfbfont.o: ../../include/misc.h ../../include/os.h ../../include/dixfontstr.h
mfbfont.o: ../../include/dixfont.h ../../include/font.h ../../include/misc.h
mfbfont.o: ../../include/os.h ../../include/scrnintstr.h
mfbfont.o: ../../include/screenint.h ../../include/misc.h ../../include/os.h
mfbfont.o: ../../include/region.h ../../include/pixmap.h ../../include/gc.h
mfbfont.o: ../../include/colormap.h mfb.h ../../include/pixmap.h
mfbfont.o: ../../include/region.h ../../include/gc.h ../../include/colormap.h
mfbfont.o: ../../include/miscstruct.h ../../include/misc.h ../../include/os.h
mfbfillrct.o: ../../../include/X.h ../../../include/Xprotostr.h
mfbfillrct.o: ../../../include/Xmd.h ../../include/pixmapstr.h
mfbfillrct.o: ../../include/pixmap.h ../../include/screenint.h
mfbfillrct.o: ../../include/misc.h ../../include/os.h
mfbfillrct.o: ../../include/gcstruct.h ../../include/gc.h
mfbfillrct.o: ../../include/miscstruct.h ../../include/misc.h
mfbfillrct.o: ../../include/os.h ../../include/region.h
mfbfillrct.o: ../../include/pixmap.h ../../include/screenint.h
mfbfillrct.o: ../../include/dixfont.h ../../include/windowstr.h
mfbfillrct.o: ../../include/window.h ../../include/pixmapstr.h
mfbfillrct.o: ../../include/pixmap.h ../../include/screenint.h
mfbfillrct.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbfillrct.o: ../../include/cursor.h ../../include/property.h
mfbfillrct.o: ../../include/resource.h ../../include/dix.h ../../include/gc.h
mfbfillrct.o: ../../include/miscstruct.h ../../include/misc.h
mfbfillrct.o: ../../include/os.h ../../include/miscstruct.h
mfbfillrct.o: ../../include/misc.h ../../include/os.h
mfbfillrct.o: ../../include/regionstr.h ../../include/region.h
mfbfillrct.o: ../../include/miscstruct.h ../../include/misc.h
mfbfillrct.o: ../../include/os.h ../../include/scrnintstr.h
mfbfillrct.o: ../../include/screenint.h ../../include/misc.h
mfbfillrct.o: ../../include/os.h ../../include/region.h
mfbfillrct.o: ../../include/pixmap.h ../../include/gc.h
mfbfillrct.o: ../../include/colormap.h mfb.h ../../include/pixmap.h
mfbfillrct.o: ../../include/region.h ../../include/gc.h
mfbfillrct.o: ../../include/colormap.h ../../include/miscstruct.h
mfbfillrct.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbfillrct.o: ../../../include/X.h ../../../include/Xmd.h
mfbpntwin.o: ../../../include/X.h ../../include/windowstr.h
mfbpntwin.o: ../../include/window.h ../../include/pixmapstr.h
mfbpntwin.o: ../../include/pixmap.h ../../include/screenint.h
mfbpntwin.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbpntwin.o: ../../include/cursor.h ../../include/property.h
mfbpntwin.o: ../../include/resource.h ../../include/dix.h ../../include/gc.h
mfbpntwin.o: ../../include/miscstruct.h ../../include/misc.h
mfbpntwin.o: ../../include/os.h ../../include/regionstr.h
mfbpntwin.o: ../../include/region.h ../../include/miscstruct.h
mfbpntwin.o: ../../include/misc.h ../../include/os.h
mfbpntwin.o: ../../include/pixmapstr.h ../../include/pixmap.h
mfbpntwin.o: ../../include/screenint.h ../../include/misc.h
mfbpntwin.o: ../../include/os.h ../../include/scrnintstr.h
mfbpntwin.o: ../../include/screenint.h ../../include/misc.h
mfbpntwin.o: ../../include/os.h ../../include/region.h ../../include/pixmap.h
mfbpntwin.o: ../../include/gc.h ../../include/colormap.h mfb.h
mfbpntwin.o: ../../include/pixmap.h ../../include/region.h ../../include/gc.h
mfbpntwin.o: ../../include/colormap.h ../../include/miscstruct.h
mfbpntwin.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbpntwin.o: ../../../include/X.h ../../../include/Xmd.h
maskbits.o: maskbits.h ../../../include/X.h ../../../include/Xmd.h
mfbpixmap.o: ../../../include/Xmd.h ../../include/pixmapstr.h
mfbpixmap.o: ../../include/pixmap.h ../../include/screenint.h
mfbpixmap.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbpixmap.o: ../../../include/X.h ../../../include/Xmd.h mfb.h
mfbpixmap.o: ../../include/pixmap.h ../../include/region.h ../../include/gc.h
mfbpixmap.o: ../../include/colormap.h ../../include/miscstruct.h
mfbpixmap.o: ../../include/misc.h ../../include/os.h ../../include/mi.h
mfbpixmap.o: ../../include/region.h
mfbimage.o: ../../../include/X.h ../../include/windowstr.h
mfbimage.o: ../../include/window.h ../../include/pixmapstr.h
mfbimage.o: ../../include/pixmap.h ../../include/screenint.h
mfbimage.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbimage.o: ../../include/cursor.h ../../include/property.h
mfbimage.o: ../../include/resource.h ../../include/dix.h ../../include/gc.h
mfbimage.o: ../../include/miscstruct.h ../../include/misc.h
mfbimage.o: ../../include/os.h ../../include/pixmapstr.h
mfbimage.o: ../../include/pixmap.h ../../include/screenint.h
mfbimage.o: ../../include/misc.h ../../include/os.h
mfbimage.o: ../../include/scrnintstr.h ../../include/screenint.h
mfbimage.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbimage.o: ../../include/pixmap.h ../../include/gc.h
mfbimage.o: ../../include/colormap.h ../../include/gcstruct.h
mfbimage.o: ../../include/gc.h ../../include/miscstruct.h
mfbimage.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbimage.o: ../../include/pixmap.h ../../include/screenint.h
mfbimage.o: ../../include/dixfont.h mfb.h ../../include/pixmap.h
mfbimage.o: ../../include/region.h ../../include/gc.h
mfbimage.o: ../../include/colormap.h ../../include/miscstruct.h
mfbimage.o: ../../include/misc.h ../../include/os.h ../../include/mi.h
mfbimage.o: ../../include/region.h ../../../include/Xmd.h maskbits.h
mfbimage.o: ../../../include/X.h ../../../include/Xmd.h
mfbline.o: ../../../include/X.h ../../include/gcstruct.h ../../include/gc.h
mfbline.o: ../../include/miscstruct.h ../../include/misc.h ../../include/os.h
mfbline.o: ../../include/region.h ../../include/pixmap.h
mfbline.o: ../../include/screenint.h ../../include/dixfont.h
mfbline.o: ../../include/windowstr.h ../../include/window.h
mfbline.o: ../../include/pixmapstr.h ../../include/pixmap.h
mfbline.o: ../../include/screenint.h ../../include/misc.h ../../include/os.h
mfbline.o: ../../include/region.h ../../include/cursor.h
mfbline.o: ../../include/property.h ../../include/resource.h
mfbline.o: ../../include/dix.h ../../include/gc.h ../../include/miscstruct.h
mfbline.o: ../../include/misc.h ../../include/os.h ../../include/pixmapstr.h
mfbline.o: ../../include/pixmap.h ../../include/screenint.h
mfbline.o: ../../include/misc.h ../../include/os.h ../../include/regionstr.h
mfbline.o: ../../include/region.h ../../include/miscstruct.h
mfbline.o: ../../include/misc.h ../../include/os.h ../../include/scrnintstr.h
mfbline.o: ../../include/screenint.h ../../include/misc.h ../../include/os.h
mfbline.o: ../../include/region.h ../../include/pixmap.h ../../include/gc.h
mfbline.o: ../../include/colormap.h ../../include/mistruct.h
mfbline.o: ../../include/mi.h ../../include/region.h
mfbline.o: ../../include/miscstruct.h ../../include/misc.h ../../include/os.h
mfbline.o: mfb.h ../../include/pixmap.h ../../include/region.h
mfbline.o: ../../include/gc.h ../../include/colormap.h
mfbline.o: ../../include/miscstruct.h ../../include/misc.h ../../include/os.h
mfbline.o: maskbits.h ../../../include/X.h ../../../include/Xmd.h
mfbbres.o: ../../../include/X.h ../../include/misc.h ../../include/os.h mfb.h
mfbbres.o: ../../include/pixmap.h ../../include/region.h ../../include/gc.h
mfbbres.o: ../../include/colormap.h ../../include/miscstruct.h
mfbbres.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbbres.o: ../../../include/X.h ../../../include/Xmd.h
mfbhrzvert.o: ../../../include/X.h ../../include/gc.h ../../include/window.h
mfbhrzvert.o: ../../include/pixmap.h ../../include/region.h mfb.h
mfbhrzvert.o: ../../include/pixmap.h ../../include/region.h
mfbhrzvert.o: ../../include/gc.h ../../include/colormap.h
mfbhrzvert.o: ../../include/miscstruct.h ../../include/misc.h
mfbhrzvert.o: ../../include/os.h maskbits.h ../../../include/X.h
mfbhrzvert.o: ../../../include/Xmd.h
mfbpushpxl.o: ../../../include/X.h ../../include/gcstruct.h
mfbpushpxl.o: ../../include/gc.h ../../include/miscstruct.h
mfbpushpxl.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbpushpxl.o: ../../include/pixmap.h ../../include/screenint.h
mfbpushpxl.o: ../../include/dixfont.h ../../include/screenint.h
mfbpushpxl.o: ../../include/pixmapstr.h ../../include/pixmap.h
mfbpushpxl.o: ../../include/screenint.h ../../include/misc.h
mfbpushpxl.o: ../../include/os.h ../../include/miscstruct.h
mfbpushpxl.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbpushpxl.o: ../../../include/X.h ../../../include/Xmd.h
mfbclipsp.o: ../../../include/X.h ../../include/miscstruct.h
mfbclipsp.o: ../../include/misc.h ../../include/os.h
mfbclipsp.o: ../../include/regionstr.h ../../include/region.h
mfbclipsp.o: ../../include/miscstruct.h ../../include/misc.h
mfbclipsp.o: ../../include/os.h
mfbfillsp.o: ../../../include/X.h ../../../include/Xmd.h
mfbfillsp.o: ../../include/gcstruct.h ../../include/gc.h
mfbfillsp.o: ../../include/miscstruct.h ../../include/misc.h
mfbfillsp.o: ../../include/os.h ../../include/region.h ../../include/pixmap.h
mfbfillsp.o: ../../include/screenint.h ../../include/dixfont.h
mfbfillsp.o: ../../include/window.h ../../include/pixmapstr.h
mfbfillsp.o: ../../include/pixmap.h ../../include/screenint.h
mfbfillsp.o: ../../include/misc.h ../../include/os.h
mfbfillsp.o: ../../include/scrnintstr.h ../../include/screenint.h
mfbfillsp.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbfillsp.o: ../../include/pixmap.h ../../include/gc.h
mfbfillsp.o: ../../include/colormap.h ../../include/windowstr.h
mfbfillsp.o: ../../include/window.h ../../include/pixmapstr.h
mfbfillsp.o: ../../include/pixmap.h ../../include/screenint.h
mfbfillsp.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbfillsp.o: ../../include/cursor.h ../../include/property.h
mfbfillsp.o: ../../include/resource.h ../../include/dix.h ../../include/gc.h
mfbfillsp.o: ../../include/miscstruct.h ../../include/misc.h
mfbfillsp.o: ../../include/os.h mfb.h ../../include/pixmap.h
mfbfillsp.o: ../../include/region.h ../../include/gc.h
mfbfillsp.o: ../../include/colormap.h ../../include/miscstruct.h
mfbfillsp.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbfillsp.o: ../../../include/X.h ../../../include/Xmd.h
mfbsetsp.o: ../../../include/X.h ../../../include/Xmd.h ../../include/misc.h
mfbsetsp.o: ../../include/os.h ../../include/regionstr.h
mfbsetsp.o: ../../include/region.h ../../include/miscstruct.h
mfbsetsp.o: ../../include/misc.h ../../include/os.h ../../include/gcstruct.h
mfbsetsp.o: ../../include/gc.h ../../include/miscstruct.h
mfbsetsp.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbsetsp.o: ../../include/pixmap.h ../../include/screenint.h
mfbsetsp.o: ../../include/dixfont.h ../../include/windowstr.h
mfbsetsp.o: ../../include/window.h ../../include/pixmapstr.h
mfbsetsp.o: ../../include/pixmap.h ../../include/screenint.h
mfbsetsp.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbsetsp.o: ../../include/cursor.h ../../include/property.h
mfbsetsp.o: ../../include/resource.h ../../include/dix.h ../../include/gc.h
mfbsetsp.o: ../../include/miscstruct.h ../../include/misc.h
mfbsetsp.o: ../../include/os.h ../../include/pixmapstr.h
mfbsetsp.o: ../../include/pixmap.h ../../include/screenint.h
mfbsetsp.o: ../../include/misc.h ../../include/os.h
mfbsetsp.o: ../../include/scrnintstr.h ../../include/screenint.h
mfbsetsp.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbsetsp.o: ../../include/pixmap.h ../../include/gc.h
mfbsetsp.o: ../../include/colormap.h mfb.h ../../include/pixmap.h
mfbsetsp.o: ../../include/region.h ../../include/gc.h
mfbsetsp.o: ../../include/colormap.h ../../include/miscstruct.h
mfbsetsp.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbsetsp.o: ../../../include/X.h ../../../include/Xmd.h
mfbscrinit.o: ../../../include/X.h ../../../include/Xproto.h
mfbscrinit.o: ../../../include/Xmd.h ../../../include/Xprotostr.h
mfbscrinit.o: ../../../include/Xmd.h ../../../include/Xmd.h
mfbscrinit.o: ../../include/scrnintstr.h ../../include/screenint.h
mfbscrinit.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbscrinit.o: ../../include/pixmap.h ../../include/gc.h
mfbscrinit.o: ../../include/colormap.h ../../include/pixmapstr.h
mfbscrinit.o: ../../include/pixmap.h ../../include/screenint.h
mfbscrinit.o: ../../include/misc.h ../../include/os.h
mfbscrinit.o: ../../include/resource.h ../../include/colormap.h mfb.h
mfbscrinit.o: ../../include/pixmap.h ../../include/region.h
mfbscrinit.o: ../../include/gc.h ../../include/colormap.h
mfbscrinit.o: ../../include/miscstruct.h ../../include/misc.h
mfbscrinit.o: ../../include/os.h ../../include/mistruct.h ../../include/mi.h
mfbscrinit.o: ../../include/region.h ../../include/miscstruct.h
mfbscrinit.o: ../../include/misc.h ../../include/os.h ../../include/dix.h
mfbscrinit.o: ../../include/gc.h
mfbclip.o: ../../../include/X.h ../../include/miscstruct.h
mfbclip.o: ../../include/misc.h ../../include/os.h ../../include/pixmapstr.h
mfbclip.o: ../../include/pixmap.h ../../include/screenint.h
mfbclip.o: ../../include/misc.h ../../include/os.h ../../include/scrnintstr.h
mfbclip.o: ../../include/screenint.h ../../include/misc.h ../../include/os.h
mfbclip.o: ../../include/region.h ../../include/pixmap.h ../../include/gc.h
mfbclip.o: ../../include/colormap.h ../../include/regionstr.h
mfbclip.o: ../../include/region.h ../../include/miscstruct.h
mfbclip.o: ../../include/misc.h ../../include/os.h ../../include/gc.h
mfbclip.o: maskbits.h ../../../include/X.h ../../../include/Xmd.h
mfbbitblt.o: ../../../include/X.h ../../../include/Xprotostr.h
mfbbitblt.o: ../../../include/Xmd.h ../../include/miscstruct.h
mfbbitblt.o: ../../include/misc.h ../../include/os.h
mfbbitblt.o: ../../include/regionstr.h ../../include/region.h
mfbbitblt.o: ../../include/miscstruct.h ../../include/misc.h
mfbbitblt.o: ../../include/os.h ../../include/gcstruct.h ../../include/gc.h
mfbbitblt.o: ../../include/miscstruct.h ../../include/misc.h
mfbbitblt.o: ../../include/os.h ../../include/region.h ../../include/pixmap.h
mfbbitblt.o: ../../include/screenint.h ../../include/dixfont.h
mfbbitblt.o: ../../include/windowstr.h ../../include/window.h
mfbbitblt.o: ../../include/pixmapstr.h ../../include/pixmap.h
mfbbitblt.o: ../../include/screenint.h ../../include/misc.h
mfbbitblt.o: ../../include/os.h ../../include/region.h ../../include/cursor.h
mfbbitblt.o: ../../include/property.h ../../include/resource.h
mfbbitblt.o: ../../include/dix.h ../../include/gc.h
mfbbitblt.o: ../../include/miscstruct.h ../../include/misc.h
mfbbitblt.o: ../../include/os.h ../../include/pixmapstr.h
mfbbitblt.o: ../../include/pixmap.h ../../include/screenint.h
mfbbitblt.o: ../../include/misc.h ../../include/os.h
mfbbitblt.o: ../../include/scrnintstr.h ../../include/screenint.h
mfbbitblt.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbbitblt.o: ../../include/pixmap.h ../../include/gc.h
mfbbitblt.o: ../../include/colormap.h mfb.h ../../include/pixmap.h
mfbbitblt.o: ../../include/region.h ../../include/gc.h
mfbbitblt.o: ../../include/colormap.h ../../include/miscstruct.h
mfbbitblt.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbbitblt.o: ../../../include/X.h ../../../include/Xmd.h
mfbgetsp.o: ../../../include/X.h ../../../include/Xmd.h ../../include/misc.h
mfbgetsp.o: ../../include/os.h ../../include/region.h ../../include/gc.h
mfbgetsp.o: ../../include/windowstr.h ../../include/window.h
mfbgetsp.o: ../../include/pixmapstr.h ../../include/pixmap.h
mfbgetsp.o: ../../include/screenint.h ../../include/misc.h ../../include/os.h
mfbgetsp.o: ../../include/region.h ../../include/cursor.h
mfbgetsp.o: ../../include/property.h ../../include/resource.h
mfbgetsp.o: ../../include/dix.h ../../include/gc.h ../../include/miscstruct.h
mfbgetsp.o: ../../include/misc.h ../../include/os.h ../../include/pixmapstr.h
mfbgetsp.o: ../../include/pixmap.h ../../include/screenint.h
mfbgetsp.o: ../../include/misc.h ../../include/os.h
mfbgetsp.o: ../../include/scrnintstr.h ../../include/screenint.h
mfbgetsp.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbgetsp.o: ../../include/pixmap.h ../../include/gc.h
mfbgetsp.o: ../../include/colormap.h mfb.h ../../include/pixmap.h
mfbgetsp.o: ../../include/region.h ../../include/gc.h
mfbgetsp.o: ../../include/colormap.h ../../include/miscstruct.h
mfbgetsp.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbgetsp.o: ../../../include/X.h ../../../include/Xmd.h
mfbpolypnt.o: ../../../include/X.h ../../../include/Xprotostr.h
mfbpolypnt.o: ../../../include/Xmd.h ../../include/pixmapstr.h
mfbpolypnt.o: ../../include/pixmap.h ../../include/screenint.h
mfbpolypnt.o: ../../include/misc.h ../../include/os.h
mfbpolypnt.o: ../../include/gcstruct.h ../../include/gc.h
mfbpolypnt.o: ../../include/miscstruct.h ../../include/misc.h
mfbpolypnt.o: ../../include/os.h ../../include/region.h
mfbpolypnt.o: ../../include/pixmap.h ../../include/screenint.h
mfbpolypnt.o: ../../include/dixfont.h ../../include/windowstr.h
mfbpolypnt.o: ../../include/window.h ../../include/pixmapstr.h
mfbpolypnt.o: ../../include/pixmap.h ../../include/screenint.h
mfbpolypnt.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbpolypnt.o: ../../include/cursor.h ../../include/property.h
mfbpolypnt.o: ../../include/resource.h ../../include/dix.h ../../include/gc.h
mfbpolypnt.o: ../../include/miscstruct.h ../../include/misc.h
mfbpolypnt.o: ../../include/os.h ../../include/miscstruct.h
mfbpolypnt.o: ../../include/misc.h ../../include/os.h
mfbpolypnt.o: ../../include/regionstr.h ../../include/region.h
mfbpolypnt.o: ../../include/miscstruct.h ../../include/misc.h
mfbpolypnt.o: ../../include/os.h ../../include/scrnintstr.h
mfbpolypnt.o: ../../include/screenint.h ../../include/misc.h
mfbpolypnt.o: ../../include/os.h ../../include/region.h
mfbpolypnt.o: ../../include/pixmap.h ../../include/gc.h
mfbpolypnt.o: ../../include/colormap.h mfb.h ../../include/pixmap.h
mfbpolypnt.o: ../../include/region.h ../../include/gc.h
mfbpolypnt.o: ../../include/colormap.h ../../include/miscstruct.h
mfbpolypnt.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbpolypnt.o: ../../../include/X.h ../../../include/Xmd.h
mfbplygblt.o: ../../../include/X.h ../../../include/Xmd.h
mfbplygblt.o: ../../../include/Xproto.h ../../../include/Xmd.h
mfbplygblt.o: ../../../include/Xprotostr.h ../../../include/Xmd.h
mfbplygblt.o: ../../include/fontstruct.h ../../include/font.h
mfbplygblt.o: ../../include/misc.h ../../include/os.h
mfbplygblt.o: ../../include/dixfontstr.h ../../include/dixfont.h
mfbplygblt.o: ../../include/font.h ../../include/misc.h ../../include/os.h
mfbplygblt.o: ../../include/gcstruct.h ../../include/gc.h
mfbplygblt.o: ../../include/miscstruct.h ../../include/misc.h
mfbplygblt.o: ../../include/os.h ../../include/region.h
mfbplygblt.o: ../../include/pixmap.h ../../include/screenint.h
mfbplygblt.o: ../../include/dixfont.h ../../include/windowstr.h
mfbplygblt.o: ../../include/window.h ../../include/pixmapstr.h
mfbplygblt.o: ../../include/pixmap.h ../../include/screenint.h
mfbplygblt.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbplygblt.o: ../../include/cursor.h ../../include/property.h
mfbplygblt.o: ../../include/resource.h ../../include/dix.h ../../include/gc.h
mfbplygblt.o: ../../include/miscstruct.h ../../include/misc.h
mfbplygblt.o: ../../include/os.h ../../include/pixmapstr.h
mfbplygblt.o: ../../include/pixmap.h ../../include/screenint.h
mfbplygblt.o: ../../include/misc.h ../../include/os.h
mfbplygblt.o: ../../include/scrnintstr.h ../../include/screenint.h
mfbplygblt.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbplygblt.o: ../../include/pixmap.h ../../include/gc.h
mfbplygblt.o: ../../include/colormap.h ../../include/regionstr.h
mfbplygblt.o: ../../include/region.h ../../include/miscstruct.h
mfbplygblt.o: ../../include/misc.h ../../include/os.h mfb.h
mfbplygblt.o: ../../include/pixmap.h ../../include/region.h
mfbplygblt.o: ../../include/gc.h ../../include/colormap.h
mfbplygblt.o: ../../include/miscstruct.h ../../include/misc.h
mfbplygblt.o: ../../include/os.h maskbits.h ../../../include/X.h
mfbplygblt.o: ../../../include/Xmd.h ../../include/miscstruct.h
mfbplygblt.o: ../../include/misc.h ../../include/os.h
mfbimggblt.o: ../../../include/X.h ../../../include/Xmd.h
mfbimggblt.o: ../../../include/Xproto.h ../../../include/Xmd.h
mfbimggblt.o: ../../../include/Xprotostr.h ../../../include/Xmd.h
mfbimggblt.o: ../../include/fontstruct.h ../../include/font.h
mfbimggblt.o: ../../include/misc.h ../../include/os.h
mfbimggblt.o: ../../include/dixfontstr.h ../../include/dixfont.h
mfbimggblt.o: ../../include/font.h ../../include/misc.h ../../include/os.h
mfbimggblt.o: ../../include/gcstruct.h ../../include/gc.h
mfbimggblt.o: ../../include/miscstruct.h ../../include/misc.h
mfbimggblt.o: ../../include/os.h ../../include/region.h
mfbimggblt.o: ../../include/pixmap.h ../../include/screenint.h
mfbimggblt.o: ../../include/dixfont.h ../../include/windowstr.h
mfbimggblt.o: ../../include/window.h ../../include/pixmapstr.h
mfbimggblt.o: ../../include/pixmap.h ../../include/screenint.h
mfbimggblt.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbimggblt.o: ../../include/cursor.h ../../include/property.h
mfbimggblt.o: ../../include/resource.h ../../include/dix.h ../../include/gc.h
mfbimggblt.o: ../../include/miscstruct.h ../../include/misc.h
mfbimggblt.o: ../../include/os.h ../../include/scrnintstr.h
mfbimggblt.o: ../../include/screenint.h ../../include/misc.h
mfbimggblt.o: ../../include/os.h ../../include/region.h
mfbimggblt.o: ../../include/pixmap.h ../../include/gc.h
mfbimggblt.o: ../../include/colormap.h ../../include/pixmapstr.h
mfbimggblt.o: ../../include/pixmap.h ../../include/screenint.h
mfbimggblt.o: ../../include/misc.h ../../include/os.h
mfbimggblt.o: ../../include/regionstr.h ../../include/region.h
mfbimggblt.o: ../../include/miscstruct.h ../../include/misc.h
mfbimggblt.o: ../../include/os.h mfb.h ../../include/pixmap.h
mfbimggblt.o: ../../include/region.h ../../include/gc.h
mfbimggblt.o: ../../include/colormap.h ../../include/miscstruct.h
mfbimggblt.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbimggblt.o: ../../../include/X.h ../../../include/Xmd.h
mfbcmap.o: ../../../include/X.h ../../include/scrnintstr.h
mfbcmap.o: ../../include/screenint.h ../../include/misc.h ../../include/os.h
mfbcmap.o: ../../include/region.h ../../include/pixmap.h ../../include/gc.h
mfbcmap.o: ../../include/colormap.h ../../include/colormap.h
mfbpntarea.o: ../../../include/X.h ../../include/windowstr.h
mfbpntarea.o: ../../include/window.h ../../include/pixmapstr.h
mfbpntarea.o: ../../include/pixmap.h ../../include/screenint.h
mfbpntarea.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbpntarea.o: ../../include/cursor.h ../../include/property.h
mfbpntarea.o: ../../include/resource.h ../../include/dix.h ../../include/gc.h
mfbpntarea.o: ../../include/miscstruct.h ../../include/misc.h
mfbpntarea.o: ../../include/os.h ../../include/regionstr.h
mfbpntarea.o: ../../include/region.h ../../include/miscstruct.h
mfbpntarea.o: ../../include/misc.h ../../include/os.h
mfbpntarea.o: ../../include/pixmapstr.h ../../include/pixmap.h
mfbpntarea.o: ../../include/screenint.h ../../include/misc.h
mfbpntarea.o: ../../include/os.h ../../include/scrnintstr.h
mfbpntarea.o: ../../include/screenint.h ../../include/misc.h
mfbpntarea.o: ../../include/os.h ../../include/region.h
mfbpntarea.o: ../../include/pixmap.h ../../include/gc.h
mfbpntarea.o: ../../include/colormap.h mfb.h ../../include/pixmap.h
mfbpntarea.o: ../../include/region.h ../../include/gc.h
mfbpntarea.o: ../../include/colormap.h ../../include/miscstruct.h
mfbpntarea.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbpntarea.o: ../../../include/X.h ../../../include/Xmd.h
mfbtile.o: ../../../include/X.h ../../include/windowstr.h
mfbtile.o: ../../include/window.h ../../include/pixmapstr.h
mfbtile.o: ../../include/pixmap.h ../../include/screenint.h
mfbtile.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbtile.o: ../../include/cursor.h ../../include/property.h
mfbtile.o: ../../include/resource.h ../../include/dix.h
mfbtile.o: ../../include/gc.h ../../include/miscstruct.h
mfbtile.o: ../../include/misc.h ../../include/os.h
mfbtile.o: ../../include/regionstr.h ../../include/region.h
mfbtile.o: ../../include/miscstruct.h ../../include/misc.h
mfbtile.o: ../../include/os.h ../../include/pixmapstr.h
mfbtile.o: ../../include/pixmap.h ../../include/screenint.h
mfbtile.o: ../../include/misc.h ../../include/os.h
mfbtile.o: ../../include/scrnintstr.h ../../include/screenint.h
mfbtile.o: ../../include/misc.h ../../include/os.h ../../include/region.h
mfbtile.o: ../../include/pixmap.h ../../include/gc.h
mfbtile.o: ../../include/colormap.h mfb.h ../../include/pixmap.h
mfbtile.o: ../../include/region.h ../../include/gc.h
mfbtile.o: ../../include/colormap.h ../../include/miscstruct.h
mfbtile.o: ../../include/misc.h ../../include/os.h maskbits.h
mfbtile.o: ../../../include/X.h ../../../include/Xmd.h
