aboutsummaryrefslogtreecommitdiff
path: root/Rules.mak
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 /Rules.mak
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 'Rules.mak')
-rw-r--r--Rules.mak15
1 files changed, 14 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index 1e519fbf1..6c4472644 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -19,7 +19,11 @@
19 19
20#-------------------------------------------------------- 20#--------------------------------------------------------
21PROG := busybox 21PROG := busybox
22VERSION := 1.1.0-pre1 22MAJOR_VERSION :=1
23MINOR_VERSION :=1
24SUBLEVEL_VERSION:=0
25EXTRAVERSION :=-pre1
26VERSION :=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)$(EXTRAVERSION)
23BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z") 27BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
24 28
25 29
@@ -43,6 +47,15 @@ NM = $(CROSS)nm
43STRIP = $(CROSS)strip 47STRIP = $(CROSS)strip
44CPP = $(CC) -E 48CPP = $(CC) -E
45# MAKEFILES = $(top_builddir)/.config 49# MAKEFILES = $(top_builddir)/.config
50RM = rm
51RM_F = $(RM) -f
52LN = ln
53LN_S = $(LN) -s
54MKDIR = mkdir
55MKDIR_P = $(MKDIR) -p
56MV = mv
57CP = cp
58
46 59
47# What OS are you compiling busybox for? This allows you to include 60# What OS are you compiling busybox for? This allows you to include
48# OS specific things, syscall overrides, etc. 61# OS specific things, syscall overrides, etc.