diff options
Diffstat (limited to 'nss/Makefile')
-rw-r--r-- | nss/Makefile | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/nss/Makefile b/nss/Makefile index 670e6b2f16..04165b7604 100644 --- a/nss/Makefile +++ b/nss/Makefile @@ -1,4 +1,5 @@ -# Copyright (C) 1996-1998,2000-2002,2007,2009 Free Software Foundation, Inc. +# Copyright (C) 1996-1998,2000-2002,2007,2009,2010 +# Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -39,7 +40,7 @@ databases = proto service hosts network grp pwd rpc ethers \ others := getent install-bin := getent -tests = test-netdb +tests = test-netdb tst-nss-test1 xtests = bug-erange include ../Makeconfig @@ -84,3 +85,14 @@ endif # a statically-linked program that hasn't already loaded it. $(services:%=$(objpfx)libnss_%.so): $(common-objpfx)libc.so \ $(common-objpfx)libc_nonshared.a + + +distribute += nss_test1.c + +CFLAGS-nss_test1.c = -DNOT_IN_libc=1 +$(objpfx)/libnss_test1.so: $(objpfx)nss_test1.os $(common-objpfx)libc.so \ + $(common-objpfx)libc_nonshared.a + $(build-module) +$(objpfx)/libnss_test1.so$(libnss_test1.so-version): $(objpfx)/libnss_test1.so + $(make-link) +$(objpfx)tst-nss-test1.out: $(objpfx)/libnss_test1.so$(libnss_test1.so-version) |