Add rump_server which is just like rump_allserver with the exception

that it links in only -lrump instead of everything.  The startup
time difference (especially when attaching a debugger) is noticeable.
This commit is contained in:
pooka 2010-12-13 13:29:15 +00:00
parent 10cb97e079
commit 53fb74fd7e
2 changed files with 14 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.195 2010/12/12 12:48:30 pooka Exp $
# $NetBSD: Makefile,v 1.196 2010/12/13 13:29:15 pooka Exp $
# from: @(#)Makefile 8.3 (Berkeley) 1/7/94
.include <bsd.own.mk>
@ -22,7 +22,7 @@ SUBDIR= apply apropos asa at audio \
pagesize passwd paste patch pathchk pkill pmap pmc pr \
printenv printf progress pwhash qsubst quota radioctl rdist \
renice rev revoke rfcomm_sppd rlogin rpcgen rpcinfo rs rsh \
rump_allserver rump_halt rup ruptime rusers rwall rwho \
rump_allserver rump_halt rump_server rup ruptime rusers rwall rwho \
script sdiff sdpquery sed seq shar shlock \
showmount shuffle sockstat soelim sort spell split stat su systat \
tabs tail talk tcopy tee telnet tftp tic time tip touch tput \

View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 2010/12/13 13:29:15 pooka Exp $
#
.PATH: ${.CURDIR}/../rump_allserver
PROG= rump_server
SRCS= rump_allserver.c
NOMAN= for now
LDADD+= -lrump -lrumpuser -lpthread
.include <bsd.prog.mk>