all: whois

whois: whois.o
	$(CC) $(LDFLAGS) -o $@ $<

whois.o: whois.c
	$(CC) $(CFLAGS) -c -o $@ $<

.PHONY: clean
clean:
	-rm -f whois whois.o
