Regenerated: autoconf configure.in
[glibc.git] / nscd / Makefile
blobf00b2f0b3ef69c89771388983c80b0f314d8cff9
1 # Copyright (C) 1998 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
20 # Sub-makefile for nscd portion of the library.
22 subdir := nscd
24 routines := nscd_getpw_r nscd_getgr_r
26 include ../Makeconfig
28 nscd-modules := nscd connections pwdcache getpwnam_r getpwuid_r grpcache \
29 getgrnam_r getgrgid_r dbg_log nscd_conf nscd_stat
31 ifeq ($(have-thread-library),yes)
33 others := nscd
34 install-sbin := nscd
36 extra-objs := $(nscd-modules:=.o)
38 endif
40 distribute := nscd.h dbg_log.h $(nscd-modules:=.c) TODO nscd.conf nscd.init \
41 nscd_proto.h
43 include ../Rules
45 $(objpfx)nscd: $(nscd-modules:%=$(objpfx)%.o)
47 ifeq ($(build-shared),yes)
48 $(objpfx)nscd: $(shared-thread-library) $(common-objpfx)nis/libnsl.so
49 else
50 $(objpfx)nscd: $(static-thread-library) $(common-objpfx)nis/libnsl.a
51 endif