summaryrefslogtreecommitdiff
path: root/libc/pwd_grp/Makefile.in
blob: 6e183cc1c8f38a8210e81abaf4fef4370bb78152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Makefile for uClibc
#
# Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
#
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
#

subdirs += libc/pwd_grp

PWDGRP_DIR := $(top_srcdir)libc/pwd_grp
PWDGRP_OUT := $(top_builddir)libc/pwd_grp

CSRC := $(notdir $(wildcard $(PWDGRP_DIR)/*.c))
CSRC := $(filter-out pwd_grp.c pwd_grp_internal.c,$(CSRC))

ifneq ($(UCLIBC_HAS_SHADOW),y)
SHADOW_CSRC := \
	fgetspent_r.c fgetspent.c getspent_r.c getspent.c \
	getspnam_r.c getspnam.c lckpwdf.c putspent.c \
	sgetspent_r.c sgetspent.c __parsespent.c
# getspuid_r.c getspuid.c
CSRC := $(filter-out $(SHADOW_CSRC),$(CSRC))
endif

PWDGRP_SRC := $(patsubst %.c,$(PWDGRP_DIR)/%.c,$(CSRC))
PWDGRP_OBJ := $(patsubst %.c,$(PWDGRP_OUT)/%.o,$(CSRC))

libc-y += $(PWDGRP_OBJ)

objclean-y += pwdgrp_clean

pwdgrp_clean:
	$(do_rm) $(addprefix $(PWDGRP_OUT)/*., o os)