CC = gcc
PROG = fingerd
OBJS = fingerd.o
CFLAGS = -O6 -D__USE_BSD
LDFLAGS = -s -N
LDLIBS = # ../libbsd/libbsd.a

all: $(PROG)

$(PROG): $(OBJS)

clean:
	rm -f *.o *~ core

clobber: clean
	rm -f $(PROG)
