15 lines
232 B
Makefile
15 lines
232 B
Makefile
VPATH+= ${TOPDIR}/io/socket
|
|
|
|
SRCS+= socket.cc
|
|
SRCS+= unix_server.cc
|
|
|
|
ifeq "${OSNAME}" "Haiku"
|
|
# Required for sockets.
|
|
LDADD+= -lnetwork
|
|
endif
|
|
|
|
ifeq "${OSNAME}" "SunOS"
|
|
# Required for sockets.
|
|
LDADD+= -lnsl
|
|
LDADD+= -lsocket
|
|
endif
|