Mon May 4 01:26:49 2009 UTC ()
Use make syntax where LDADD applies only to a certain target
(not that there currently is more than one, but ...)


(pooka)
diff -r1.1 -r1.2 src/tests/syscall/Makefile

cvs diff -r1.1 -r1.2 src/tests/syscall/Attic/Makefile (expand / switch to unified diff)

--- src/tests/syscall/Attic/Makefile 2009/02/10 13:43:54 1.1
+++ src/tests/syscall/Attic/Makefile 2009/05/04 01:26:49 1.2
@@ -1,12 +1,12 @@ @@ -1,12 +1,12 @@
1# $NetBSD: Makefile,v 1.1 2009/02/10 13:43:54 pooka Exp $ 1# $NetBSD: Makefile,v 1.2 2009/05/04 01:26:49 pooka Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4 4
5TESTSDIR= ${TESTSBASE}/syscall 5TESTSDIR= ${TESTSBASE}/syscall
6 6
7TESTS_C= t_cmsg 7TESTS_C+= t_cmsg
8 8
9LDADD+= -lrumpnet_local -lrumpnet_net -lrumpnet -lrumpvfs -lrump 9LDADD.t_cmsg+= -lrumpnet_local -lrumpnet_net -lrumpnet -lrumpvfs -lrump
10LDADD+= -lrumpuser -lpthread 10LDADD.t_cmsg+= -lrumpuser -lpthread
11 11
12.include <bsd.test.mk> 12.include <bsd.test.mk>