X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libpwdgrp%2FMakefile.in;h=2511d34ef513c88d4cf0be81085a1c1722b588d4;hb=6dce0b6fa79f2d4bb7e9d90e1fbc0f6beb25f855;hp=7d7241c6600a32723dac33a51e16ebef4a8160dc;hpb=4d00896d05294a11f74fde6e7107f6cf1be4d5b7;p=oweals%2Fbusybox.git diff --git a/libpwdgrp/Makefile.in b/libpwdgrp/Makefile.in index 7d7241c66..2511d34ef 100644 --- a/libpwdgrp/Makefile.in +++ b/libpwdgrp/Makefile.in @@ -1,28 +1,18 @@ # Makefile for busybox # -# Copyright (C) 1999-2004 by Erik Andersen -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program 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 -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Copyright (C) 1999-2005 by Erik Andersen # +# Licensed under the GPL v2, see the file LICENSE in this tarball. LIBPWDGRP_AR:=libpwdgrp.a ifndef $(LIBPWDGRP_DIR) -LIBPWDGRP_DIR:=$(top_builddir)/libpwdgrp/ +LIBPWDGRP_DIR:=$(top_builddir)/libpwdgrp endif srcdir=$(top_srcdir)/libpwdgrp +LIBPWDGRP-obj:=$(LIBPWDGRP_DIR)/$(LIBPWDGRP_AR) + +libraries-y+=$(LIBPWDGRP_DIR)/$(LIBPWDGRP_AR) LIBPWDGRP_MSRC0:=$(srcdir)/pwd_grp.c LIBPWDGRP_MOBJ0-$(CONFIG_USE_BB_PWD_GRP):= fgetpwent_r.o fgetgrent_r.o \ @@ -30,24 +20,32 @@ LIBPWDGRP_MOBJ0-$(CONFIG_USE_BB_PWD_GRP):= fgetpwent_r.o fgetgrent_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 -LIBPWDGRP_MOBJS0=$(patsubst %,$(LIBPWDGRP_DIR)%, $(LIBPWDGRP_MOBJ0-y)) +LIBPWDGRP_MOBJS0=$(patsubst %,$(LIBPWDGRP_DIR)/%, $(LIBPWDGRP_MOBJ0-y)) LIBPWDGRP_MSRC1:=$(srcdir)/pwd_grp.c LIBPWDGRP_MOBJ1-$(CONFIG_USE_BB_PWD_GRP):= __parsepwent.o __parsegrent.o \ __pgsreader.o 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.o -LIBPWDGRP_MOBJS1=$(patsubst %,$(LIBPWDGRP_DIR)%, $(LIBPWDGRP_MOBJ1-y)) +LIBPWDGRP_MOBJS1=$(patsubst %,$(LIBPWDGRP_DIR)/%, $(LIBPWDGRP_MOBJ1-y)) -libraries-y+=$(LIBPWDGRP_DIR)$(LIBPWDGRP_AR) +LIBPWDGRP_DEFINE0-y:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(LIBPWDGRP_MOBJS0)))) +LIBPWDGRP_DEFINE1-y:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(LIBPWDGRP_MOBJS1)))) -$(LIBPWDGRP_DIR)$(LIBPWDGRP_AR): $(LIBPWDGRP_MOBJS0) $(LIBPWDGRP_MOBJS1) - $(AR) $(ARFLAGS) $@ $(LIBPWDGRP_MOBJS0) $(LIBPWDGRP_MOBJS1) +LIBPWDGRP_SRC-y:=$(LIBPWDGRP_MSRC0) -$(LIBPWDGRP_MOBJS0): $(LIBPWDGRP_MSRC0) - $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DL_$(notdir $*) -c $< -o $@ +LIBRARY_SRC-y+=$(LIBPWDGRP_SRC-y) +LIBRARY_SRC-a+=$(LIBPWDGRP_SRC-y) + +LIBRARY_DEFINE-y+=$(LIBPWDGRP_DEFINE0-y) $(LIBPWDGRP_DEFINE1-y) +LIBRARY_DEFINE-a+=$(LIBPWDGRP_DEFINE0-y) $(LIBPWDGRP_DEFINE1-y) -$(LIBPWDGRP_MOBJS1): $(LIBPWDGRP_MSRC1) - $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DL_$(notdir $*) -c $< -o $@ +$(LIBPWDGRP_DIR)/$(LIBPWDGRP_AR): $(LIBPWDGRP_MOBJS0) $(LIBPWDGRP_MOBJS1) + $(do_ar) +$(LIBPWDGRP_MOBJS0): $(LIBPWDGRP_MSRC0) + $(compile.c) -DL_$(notdir $*) + +$(LIBPWDGRP_MOBJS1): $(LIBPWDGRP_MSRC1) + $(compile.c) -DL_$(notdir $*)