diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:49:22 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:49:22 +0000 |
commit | dc93978c2b9c1fea751a3e20473c6d2a63252ebc (patch) | |
tree | 581ce4c1274af241ff458b09f3c083fd10ea7870 /libnsl | |
parent | 19c1e523750cc95abaa6858a30715954be1223b3 (diff) | |
download | uClibc-alpine-dc93978c2b9c1fea751a3e20473c6d2a63252ebc.tar.bz2 uClibc-alpine-dc93978c2b9c1fea751a3e20473c6d2a63252ebc.tar.xz |
Copy from trunk.
Diffstat (limited to 'libnsl')
-rw-r--r-- | libnsl/Makefile.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libnsl/Makefile.in b/libnsl/Makefile.in new file mode 100644 index 000000000..b4dcefae2 --- /dev/null +++ b/libnsl/Makefile.in @@ -0,0 +1,26 @@ +# Makefile for uClibc +# +# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org> +# +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. +# + +CFLAGS+=$(SSP_ALL_CFLAGS) + +LIB_NAME:=libnsl + +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-so-y:=$(libnsl_OBJ:.o=.os) + +libnsl-multi-y:=$(libnsl_SRC) + +objclean-y+=libnsl_clean + +lib-a-y+=$(top_builddir)lib/libnsl.a +lib-so-y+=$(top_builddir)lib/libnsl.so |