2053e9a314
New features are: Automatic lookup using *.whois-servers.net Recursive lookup using Registrar's name Fallback to InterNIC for non-domains -m for RADB database -Q to turn recursion/fallback off Obtained from: OpenBSD
15 lines
293 B
Makefile
15 lines
293 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= whois
|
|
|
|
CFLAGS+=-Wall
|
|
.if defined(SOCKS)
|
|
CFLAGS+=-DSOCKS
|
|
CFLAGS+=-Dconnect=Rconnect -Dgetsockname=Rgetsockname -Dlisten=Rlisten \
|
|
-Daccept=Raccept -Drcmd=Rrcmd -Dbind=Rbind -Dselect=Rselect
|
|
LDADD+= -lsocks
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|