# hfinger Makefile

CC	= gcc
XLIB	= -lX11

all:	hfinger

hfinger:hfinger.o
	$(CC) -o hfinger hfinger.o $(XLIB)

clean	:
	rm -f *.o hfinger
