2018-01-01 01:32:25 +01:00
|
|
|
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
1996-08-11 03:08:23 +02:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
1996-08-11 03:08:23 +02:00
|
|
|
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
# Lesser General Public License for more details.
|
1996-08-11 03:08:23 +02:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
2012-02-10 00:18:22 +01:00
|
|
|
# License along with the GNU C Library; if not, see
|
|
|
|
# <http://www.gnu.org/licenses/>.
|
1996-08-11 03:08:23 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Makefile for shadow.
|
|
|
|
#
|
|
|
|
subdir := shadow
|
|
|
|
|
2014-02-27 00:12:03 +01:00
|
|
|
include ../Makeconfig
|
|
|
|
|
1996-08-11 03:08:23 +02:00
|
|
|
headers = shadow.h
|
|
|
|
routines = getspent getspnam sgetspent fgetspent putspent \
|
1996-08-26 12:28:45 +02:00
|
|
|
getspent_r getspnam_r sgetspent_r fgetspent_r \
|
|
|
|
lckpwdf
|
1996-08-11 03:08:23 +02:00
|
|
|
|
2015-10-02 11:34:13 +02:00
|
|
|
tests = tst-shadow tst-putspent
|
2009-04-23 20:58:19 +02:00
|
|
|
|
2017-12-11 22:11:16 +01:00
|
|
|
CFLAGS-getspent_r.c += -fexceptions
|
|
|
|
CFLAGS-getspent.c += -fexceptions
|
|
|
|
CFLAGS-fgetspent.c += -fexceptions
|
|
|
|
CFLAGS-fgetspent_r.c += -fexceptions $(libio-mtsafe)
|
|
|
|
CFLAGS-putspent.c += -fexceptions $(libio-mtsafe)
|
|
|
|
CFLAGS-getspnam.c += -fexceptions
|
|
|
|
CFLAGS-getspnam_r.c += -fexceptions
|
1996-08-11 03:08:23 +02:00
|
|
|
|
|
|
|
include ../Rules
|