# add -DWELCOME to CFLAGS if you want the "welcome banner"

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

fingerd: fingerd.o

install: fingerd
	install -o root -g root -m 0755 fingerd ${DEBDIR}/usr/sbin/in.fingerd
	install -o root -g root -m 0644 fingerd.8 ${DEBDIR}/usr/man/man8
	install -o root -g root -m 0644 in.fingerd.8 ${DEBDIR}/usr/man/man8

clean:
	rm -f *.o fingerd

