]> sourceware.org Git - glibc.git/blame - login/Makefile
[BZ #6634]
[glibc.git] / login / Makefile
CommitLineData
ff40792e 1# Copyright (C) 1996-1998,2000-2002,2003,2007 Free Software Foundation, Inc.
b8fe19fa
RM
2# This file is part of the GNU C Library.
3
4# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
b8fe19fa
RM
8
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
41bdb6e2 12# Lesser General Public License for more details.
b8fe19fa 13
41bdb6e2
AJ
14# You should have received a copy of the GNU Lesser General Public
15# License along with the GNU C Library; if not, write to the Free
16# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17# 02111-1307 USA.
b8fe19fa
RM
18
19#
20# Sub-makefile for login portion of the library.
21#
22
23subdir := login
24
8619129f 25headers := utmp.h bits/utmp.h lastlog.h pty.h
b8fe19fa 26
8a523922 27routines := getutent getutent_r getutid getutline getutid_r getutline_r \
92da46fc 28 utmp_file utmpname updwtmp getpt grantpt unlockpt ptsname
8a523922 29
6591c335
UD
30CFLAGS-grantpt.c = -DLIBEXECDIR='"$(libexecdir)"'
31
d9317f3d 32others = utmpdump pt_chown
ff40792e 33install-others-programs = $(inst_libexecdir)/pt_chown
76b87c03 34
4c53d221 35distribute := utmp-private.h utmp-equal.h pty-private.h
76b87c03 36
b13927da
UD
37subdir-dirs = programs
38vpath %.c programs
b8fe19fa 39
9cddf9de 40tests := tst-utmp tst-utmpx tst-grantpt
7ba4fcfc 41
b8fe19fa
RM
42# Build the -lutil library with these extra functions.
43extra-libs := libutil
ba1ffaa1
UD
44extra-libs-others := $(extra-libs)
45
6591c335 46libutil-routines:= login login_tty logout logwtmp openpty forkpty
b8fe19fa 47
b8fe19fa 48include ../Rules
9498096c 49
f1c30c98
UD
50CFLAGS-getpt.c = -fexceptions
51
ce85d65b
UD
52ifeq (yes,$(build-static-nss))
53otherlibs += $(nssobjdir)/libnss_files.a $(resolvobjdir)/libnss_dns.a \
54 $(resolvobjdir)/libresolv.a $(common-objpfx)libc.a
55endif
56
6591c335 57# pt_chown needs to be setuid root.
73237de3 58$(inst_libexecdir)/pt_chown: $(objpfx)pt_chown $(+force)
da2d1bc5 59 $(make-target-directory)
f98b4bbd 60 -$(INSTALL_PROGRAM) -m 4755 -o root $< $@
6591c335 61
9498096c
UD
62# Depend on libc.so so a DT_NEEDED is generated in the shared objects.
63# This ensures they will load libc.so for needed symbols if loaded by
64# a statically-linked program that hasn't already loaded it.
639c3248 65$(objpfx)libutil.so: $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a
This page took 0.302315 seconds and 5 git commands to generate.