diff options
author | Bernhard Reutner-Fischer | 2005-09-26 16:01:43 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2005-09-26 16:01:43 +0000 |
commit | 1c943eb88af4782f02001ced33f0b07e892bdb22 (patch) | |
tree | 82cf8538328a28f31eea2fd5a8d5bf06ecd9e6f9 | |
parent | d24eaac9e66d1f725a7b3c8e8d472845c3f63c39 (diff) | |
download | busybox-1c943eb88af4782f02001ced33f0b07e892bdb22.zip busybox-1c943eb88af4782f02001ced33f0b07e892bdb22.tar.gz |
- remove unused variable TOPDIR
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | Rules.mak | 2 |
2 files changed, 3 insertions, 5 deletions
@@ -12,12 +12,11 @@ noconfig_targets := menuconfig config oldconfig randconfig \ defconfig allyesconfig allnoconfig clean distclean \ release tags -ifndef TOPDIR -TOPDIR=$(CURDIR)/ -endif +# the toplevel sourcedir ifndef top_srcdir top_srcdir=$(CURDIR) endif +# toplevel directory of the object-tree ifndef top_builddir top_builddir=$(CURDIR) endif @@ -70,7 +69,6 @@ $(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUT $(MAKE) -C $(KBUILD_OUTPUT) \ top_srcdir=$(CURDIR) \ top_builddir=$(KBUILD_OUTPUT) \ - TOPDIR=$(KBUILD_OUTPUT) \ KBUILD_SRC=$(CURDIR) \ -f $(CURDIR)/Makefile $@ @@ -84,7 +84,7 @@ CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) ARFLAGS=cru #-------------------------------------------------------- -export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP +export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP ifeq ($(strip $(TARGET_ARCH)),) TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ -e 's/i.86/i386/' \ |