aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-13 10:40:18 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-13 10:40:18 +0000
commit846218fbf12a4870648037175fe7cdf286501569 (patch)
tree08c307c55926456b2001311f7fbf7c04959a5cec /Makefile
parente3be1757f591751707498b89ee40f29e2d389835 (diff)
downloadbusybox-w32-846218fbf12a4870648037175fe7cdf286501569.tar.gz
busybox-w32-846218fbf12a4870648037175fe7cdf286501569.tar.bz2
busybox-w32-846218fbf12a4870648037175fe7cdf286501569.zip
- split VERSION into parts
- add some filesystem operation wrapper variables for use in the makefiles and pull them in early in the toplevel makefile - use the cross-toolchain for "make sizes" git-svn-id: svn://busybox.net/trunk/busybox@11856 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 63a2c1327..9c3ed40a8 100644
--- a/Makefile
+++ b/Makefile
@@ -53,6 +53,11 @@ else
53 KBUILD_OUTPUT := $(top_builddir) 53 KBUILD_OUTPUT := $(top_builddir)
54endif 54endif
55 55
56ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
57# pull in OS specific commands like cp, mkdir, etc. early
58-include $(top_srcdir)/Rules.mak
59endif
60
56# All object directories. 61# All object directories.
57OBJ_DIRS := $(DIRS) 62OBJ_DIRS := $(DIRS)
58all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include) 63all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include)
@@ -252,7 +257,7 @@ sizes:
252 -rm -f busybox 257 -rm -f busybox
253 $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \ 258 $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
254 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true 259 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
255 nm --size-sort busybox 260 $(NM) --size-sort busybox
256 261
257# Documentation Targets 262# Documentation Targets
258doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html 263doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html