summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libnsl/Makefile.in26
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