Module Name: src
Committed By: pooka
Date: Mon Dec 13 13:29:15 UTC 2010
Modified Files:
src/usr.bin: Makefile
Added Files:
src/usr.bin/rump_server: Makefile
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.195 -r1.196 src/usr.bin/Makefile
cvs rdiff -u -r0 -r1.1 src/usr.bin/rump_server/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/Makefile
diff -u src/usr.bin/Makefile:1.195 src/usr.bin/Makefile:1.196
--- src/usr.bin/Makefile:1.195 Sun Dec 12 12:48:30 2010
+++ src/usr.bin/Makefile Mon Dec 13 13:29:15 2010
@@ -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 @@
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 \
Added files:
Index: src/usr.bin/rump_server/Makefile
diff -u /dev/null src/usr.bin/rump_server/Makefile:1.1
--- /dev/null Mon Dec 13 13:29:15 2010
+++ src/usr.bin/rump_server/Makefile Mon Dec 13 13:29:15 2010
@@ -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>