CFLAGS = -O2 -fomit-frame-pointer -include /usr/include/bsd/bsd.h \
		-I/usr/include/bsd
LDFLAGS = -s -v
LDLIBS = -lbsd

finger: finger.o lprint.o net.o sprint.o util.o

install: finger
	install -o root -g root -m 0755 finger ${DEBDIR}/usr/bin
	install -o root -g root -m 0644 finger.1 ${DEBDIR}/usr/man/man1

clean:
	rm -f *.o finger

