diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-09-26 16:01:43 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-09-26 16:01:43 +0000 |
commit | 1c943eb88af4782f02001ced33f0b07e892bdb22 (patch) | |
tree | 82cf8538328a28f31eea2fd5a8d5bf06ecd9e6f9 | |
parent | d24eaac9e66d1f725a7b3c8e8d472845c3f63c39 (diff) | |
download | busybox-w32-1c943eb88af4782f02001ced33f0b07e892bdb22.tar.gz busybox-w32-1c943eb88af4782f02001ced33f0b07e892bdb22.tar.bz2 busybox-w32-1c943eb88af4782f02001ced33f0b07e892bdb22.zip |
- 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 \ | |||
12 | defconfig allyesconfig allnoconfig clean distclean \ | 12 | defconfig allyesconfig allnoconfig clean distclean \ |
13 | release tags | 13 | release tags |
14 | 14 | ||
15 | ifndef TOPDIR | 15 | # the toplevel sourcedir |
16 | TOPDIR=$(CURDIR)/ | ||
17 | endif | ||
18 | ifndef top_srcdir | 16 | ifndef top_srcdir |
19 | top_srcdir=$(CURDIR) | 17 | top_srcdir=$(CURDIR) |
20 | endif | 18 | endif |
19 | # toplevel directory of the object-tree | ||
21 | ifndef top_builddir | 20 | ifndef top_builddir |
22 | top_builddir=$(CURDIR) | 21 | top_builddir=$(CURDIR) |
23 | endif | 22 | endif |
@@ -70,7 +69,6 @@ $(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUT | |||
70 | $(MAKE) -C $(KBUILD_OUTPUT) \ | 69 | $(MAKE) -C $(KBUILD_OUTPUT) \ |
71 | top_srcdir=$(CURDIR) \ | 70 | top_srcdir=$(CURDIR) \ |
72 | top_builddir=$(KBUILD_OUTPUT) \ | 71 | top_builddir=$(KBUILD_OUTPUT) \ |
73 | TOPDIR=$(KBUILD_OUTPUT) \ | ||
74 | KBUILD_SRC=$(CURDIR) \ | 72 | KBUILD_SRC=$(CURDIR) \ |
75 | -f $(CURDIR)/Makefile $@ | 73 | -f $(CURDIR)/Makefile $@ |
76 | 74 | ||
@@ -84,7 +84,7 @@ CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) | |||
84 | ARFLAGS=cru | 84 | ARFLAGS=cru |
85 | 85 | ||
86 | #-------------------------------------------------------- | 86 | #-------------------------------------------------------- |
87 | export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP | 87 | export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP |
88 | ifeq ($(strip $(TARGET_ARCH)),) | 88 | ifeq ($(strip $(TARGET_ARCH)),) |
89 | TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ | 89 | TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ |
90 | -e 's/i.86/i386/' \ | 90 | -e 's/i.86/i386/' \ |