
all: finger

finger:
	$(CC) -I/usr/athena/include -L/usr/athena/lib -o finger finger.c -lzephyr -lhesiod -lkrb -ldes -lcom_err

install:
	install -c -s finger ${DESTDIR}/usr/athena/bin

clean:
	rm -f finger

