Module Name: src
Committed By: pooka
Date: Mon May 4 01:26:49 UTC 2009
Modified Files:
src/tests/syscall: Makefile
Log Message:
Use make syntax where LDADD applies only to a certain target
(not that there currently is more than one, but ...)
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/syscall/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/syscall/Makefile
diff -u src/tests/syscall/Makefile:1.1 src/tests/syscall/Makefile:1.2
--- src/tests/syscall/Makefile:1.1 Tue Feb 10 13:43:54 2009
+++ src/tests/syscall/Makefile Mon May 4 01:26:49 2009
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile,v 1.1 2009/02/10 13:43:54 pooka Exp $
+# $NetBSD: Makefile,v 1.2 2009/05/04 01:26:49 pooka Exp $
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/syscall
-TESTS_C= t_cmsg
+TESTS_C+= t_cmsg
-LDADD+= -lrumpnet_local -lrumpnet_net -lrumpnet -lrumpvfs -lrump
-LDADD+= -lrumpuser -lpthread
+LDADD.t_cmsg+= -lrumpnet_local -lrumpnet_net -lrumpnet -lrumpvfs -lrump
+LDADD.t_cmsg+= -lrumpuser -lpthread
.include <bsd.test.mk>