#
#  For Solaris, make "LIBS=-lsocket -lresolv -lnsl"

CC	=gcc
CFLAGS	=-O

all: fwhois

fwhois: fwhois.o
	$(CC) -o fwhois fwhois.o $(LIBS)

clean:
	rm -f core *~ $(PROG)

install: fwhois
	install -c -s fwhois /mit/sipb/bin
