summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.in2
-rw-r--r--librt/Makefile.in6
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index f8c082bbe..2515880c8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -27,9 +27,9 @@ include $(top_srcdir)libintl/Makefile.in
include $(top_srcdir)libm/Makefile.in
include $(top_srcdir)libnsl/Makefile.in
include $(top_srcdir)libresolv/Makefile.in
-include $(top_srcdir)librt/Makefile.in
include $(top_srcdir)libutil/Makefile.in
include $(top_srcdir)libpthread/Makefile.in
+include $(top_srcdir)librt/Makefile.in
include $(top_srcdir)extra/locale/Makefile.in
# last included to catch all the objects added by others (locales/threads)
diff --git a/librt/Makefile.in b/librt/Makefile.in
index ec405e556..5fddb5fc6 100644
--- a/librt/Makefile.in
+++ b/librt/Makefile.in
@@ -20,11 +20,11 @@ librt_SRC := $(wildcard $(librt_DIR)/*.c)
librt_OBJ := $(patsubst $(librt_DIR)/%.c,$(librt_OUT)/%.o,$(librt_SRC))
ifeq ($(DOPIC),y)
-librt-a-y := $(librt_OBJ:.o=.os)
+librt-a-y += $(librt_OBJ:.o=.os)
else
-librt-a-y := $(librt_OBJ)
+librt-a-y += $(librt_OBJ)
endif
-librt-so-y := $(librt_OBJ:.o=.os)
+librt-so-y += $(librt_OBJ:.o=.os)
librt-multi-y += $(librt_SRC)