include ../../../Configfile

CFLAGS=		$(FLAGS)
OBJS=		bitmapread.o bitmapwrite.o bit_load.o

all:		$(OBJS)

screen.h:
		ln -s ../$(BITBLIT)/$(SCREEN).h screen.h

install:	all
		install -c -m 644 bitmap.5 $(MANDIR)/man5

depend:		screen.h
		$(CC) -MM $(CFLAGS) *.c > dependencies

clean:
		rm -f $(OBJS)

clobber:	clean
		rm -f screen.h
		> dependencies

include dependencies
