From a80fc77b658a7883df95ac41ad83ac9ff7c8ff07 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 25 Oct 2005 22:17:39 +0000 Subject: All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally. --- libutil/Makefile.in | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) (limited to 'libutil') diff --git a/libutil/Makefile.in b/libutil/Makefile.in index 8c5846400..6f6b03ea1 100644 --- a/libutil/Makefile.in +++ b/libutil/Makefile.in @@ -1,21 +1,33 @@ -# Makefile.in for uClibc +# Makefile for uClibc # -# Licensed under LGPL v2.1, see the file COPYING.LIB in this tarball for details. +# Copyright (C) 2000-2005 Erik Andersen +# +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # CFLAGS+=$(SSP_ALL_CFLAGS) +#DOMULTI=y + LIB_NAME:=libutil -srcdir=$(top_srcdir)$(LIB_NAME) +libutil_DIR:=$(top_srcdir)libutil +libutil_OUT:=$(top_builddir)libutil -$(LIB_NAME)_SRC:=$(wildcard $(srcdir)/*.c) +libutil_SRC:=$(wildcard $(libutil_DIR)/*.c) ifneq ($(ARCH_HAS_MMU),y) -$(LIB_NAME)_SRC:=$(filter-out $(srcdir)/forkpty.c,$($(LIB_NAME)_SRC)) +libutil_SRC:=$(filter-out $(libutil_DIR)/forkpty.c,$(libutil_SRC)) endif +libutil_OBJ:=$(patsubst $(libutil_DIR)/%.c,$(libutil_OUT)/%.o,$(libutil_SRC)) + +libutil-a-y:=$(libutil_OBJ) +libutil-a-pic-y:=$(libutil_OBJ:.o=.os) +libutil-so-y:=$(libutil_OBJ:.o=.os) + +libutil-multi-y:=$(libutil_SRC) -libso-y+=$(top_builddir)lib/$(LIB_NAME).so -liba-y+=$(top_builddir)lib/$(LIB_NAME).a -libclean-y+=$(LIB_NAME)_clean +objclean-y+=libutil_clean -include $(top_srcdir)Makefile.libs +lib-a-y+=$(top_builddir)lib/libutil.a +lib-a-pic-y+=$(top_builddir)lib/libutil.a +lib-so-y+=$(top_builddir)lib/libutil.so -- cgit v1.2.3