d9fd44dd79
Remove a useless bind() call (why did that ever get in there?)
13 lines
267 B
Makefile
13 lines
267 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
PROG= whois
|
|
|
|
.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>
|