From 129b1d713e4b7df2ae24007effb85926f9e74616 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 18 Jan 2005 22:55:44 +0000 Subject: - define RANLIB since a subdir or two uses it - add support for DESTDIR to work the same as PREFIX --- Rules.mak | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Rules.mak') diff --git a/Rules.mak b/Rules.mak index fb56a2ac2..a9f500146 100644 --- a/Rules.mak +++ b/Rules.mak @@ -42,6 +42,7 @@ AR= $(CROSS)ar LD= $(CROSS)ld NM= $(CROSS)nm STRIPTOOL= $(CROSS)strip +RANLIB= $(CROSS)ranlib INSTALL= install LN= ln @@ -70,6 +71,12 @@ UCLIBC_LDSO:=ld-uClibc.so.$(MAJOR_VERSION) LIBNAME:=libc.a LIBC:=$(TOPDIR)libc/$(LIBNAME) +# Make sure DESTDIR and PREFIX can be used to install +# PREFIX is a uClibcism while DESTDIR is a common GNUism +ifndef PREFIX +PREFIX = $(DESTDIR) +endif + # Pull in the user's uClibc configuration ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) -include $(TOPDIR).config @@ -309,4 +316,3 @@ ifeq ($(CONFIG_BINFMT_SHARED_FLAT),y) endif TARGET_ARCH:=$(strip $(subst ",, $(strip $(TARGET_ARCH)))) - -- cgit v1.2.3