summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2008-09-27 22:00:34 +0000
committerRob Landley <rob@landley.net>2008-09-27 22:00:34 +0000
commit615aed08180943965201c658435e94134eea6f93 (patch)
treef895161b7343653dee47d2baa5103bb6c43b40e8 /Makefile.in
parent58e11d24b86e46689ecb26a8f897bb4588341aad (diff)
Dependencies tweak: make install should depend on all, or
"make -j 3 all install" can't work without two separate invocations of make.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index d2590882f..6fcc819fe 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -350,7 +350,7 @@ ifneq ($(UCLIBC_SUPPORT_AI_ADDRCONFIG),y)
endif
# Installs development library links.
-install_dev: install_headers
+install_dev: install_headers all
$(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
-$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
ifeq ($(HAVE_SHARED),y)
@@ -402,7 +402,7 @@ ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
endif
# Installs run-time libraries
-install_runtime:
+install_runtime: all
ifeq ($(HAVE_SHARED),y)
$(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
$(INSTALL) -m 644 lib/lib*-$(VERSION).so \