| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | # Makefile for uClibc## Copyright (C) 2000 by Lineo, inc.# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>## Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.#MSRC:=pwd_grp.cMOBJ:=	fgetpwent_r.o fgetgrent_r.o fgetpwent.o fgetgrent.o \	getpwnam_r.o getgrnam_r.o getpwuid_r.o getgrgid_r.o \	getpwuid.o getgrgid.o getpwnam.o getgrnam.o getpw.o \	getpwent_r.o getgrent_r.o getpwent.o getgrent.o \	initgroups.o putpwent.o putgrent.o \	__parsepwent.o __parsegrent.o __pgsreader.oifeq ($(HAS_SHADOW),y)MOBJ+=	fgetspent_r.o fgetspent.o sgetspent_r.o getspnam_r.o \	getspnam.o getspent_r.o getspent.o sgetspent.o \	putspent.o __parsespent.o # getspuid_r.o getspuid.oendifPWDGRP_DIR:=$(top_srcdir)libc/pwd_grpPWDGRP_OUT:=$(top_builddir)libc/pwd_grpPWDGRP_MSRC:=$(PWDGRP_DIR)/$(MSRC)PWDGRP_MOBJ:=$(patsubst %.o,$(PWDGRP_OUT)/%.o,$(MOBJ))PWDGRP_DEF:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(PWDGRP_MOBJ))))$(PWDGRP_MOBJ) $(PWDGRP_MOBJ:.o=.os): $(PWDGRP_MSRC)	$(compile.m)libc-a-y+=$(PWDGRP_MOBJ)libc-a-$(HAS_SHADOW)+=$(PWDGRP_OUT)/lckpwdf.olibc-so-y+=$(PWDGRP_MOBJ:.o=.os)libc-so-$(HAS_SHADOW)+=$(PWDGRP_OUT)/lckpwdf.osCFLAGS-multi-y+=$(PWDGRP_DEF)libc-multi-y+=$(PWDGRP_MSRC)libc-multi-$(HAS_SHADOW)+=$(PWDGRP_DIR)/lckpwdf.cobjclean-y+=pwdgrp_objcleanpwdgrp_objclean:	$(RM) $(PWDGRP_OUT)/*.{o,os}
 |