summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libresolv/Makefile.in26
1 files changed, 26 insertions, 0 deletions
diff --git a/libresolv/Makefile.in b/libresolv/Makefile.in
new file mode 100644
index 000000000..06938da9b
--- /dev/null
+++ b/libresolv/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:=libresolv
+
+libresolv_DIR:=$(top_srcdir)libresolv
+libresolv_OUT:=$(top_builddir)libresolv
+
+libresolv_SRC:=$(libresolv_DIR)/resolv.c
+libresolv_OBJ:=$(patsubst $(libresolv_DIR)/%.c,$(libresolv_OUT)/%.o,$(libresolv_SRC))
+
+libresolv-a-y:=$(libresolv_OBJ)
+libresolv-so-y:=$(libresolv_OBJ:.o=.os)
+
+libresolv-multi-y:=$(libresolv_SRC)
+
+objclean-y+=libresolv_clean
+
+lib-a-y+=$(top_builddir)lib/libresolv.a
+lib-so-y+=$(top_builddir)lib/libresolv.so