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. --- libnsl/Makefile.in | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) (limited to 'libnsl') diff --git a/libnsl/Makefile.in b/libnsl/Makefile.in index 678e4c530..076eb49dd 100644 --- a/libnsl/Makefile.in +++ b/libnsl/Makefile.in @@ -1,16 +1,31 @@ -# 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) +# useless, only 1 source file +DOMULTI=n + LIB_NAME:=libnsl -srcdir=$(top_srcdir)$(LIB_NAME) +libnsl_DIR:=$(top_srcdir)libnsl +libnsl_OUT:=$(top_builddir)libnsl + +libnsl_SRC:=$(libnsl_DIR)/nsl.c +libnsl_OBJ:=$(patsubst $(libnsl_DIR)/%.c,$(libnsl_OUT)/%.o,$(libnsl_SRC)) + +libnsl-a-y:=$(libnsl_OBJ) +libnsl-a-pic-y:=$(libnsl_OBJ:.o=.os) +libnsl-so-y:=$(libnsl_OBJ:.o=.os) + +#libnsl-multi-y:=$(libnsl_SRC) -libso-y+=$(top_builddir)lib/$(LIB_NAME).so -liba-y+=$(top_builddir)lib/$(LIB_NAME).a -libclean-y+=$(LIB_NAME)_clean +objclean-y+=libnsl_clean -include $(top_srcdir)Makefile.libs +lib-a-y+=$(top_builddir)lib/libnsl.a +lib-a-pic-y+=$(top_builddir)lib/libnsl.a +lib-so-y+=$(top_builddir)lib/libnsl.so -- cgit v1.2.3