OBJS=whois.o herror.o
CFLAGS=-O -bsd
LDFLAGS=-s
LIBS=

all: whois

whois: $(OBJS)
	$(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)

clean:
	/bin/rm -f $(OBJS) whois
