summaryrefslogtreecommitdiff
path: root/utils/tcctool/Makefile
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2010-05-02 09:54:14 +0000
committerDave Chapman <dave@dchapman.com>2010-05-02 09:54:14 +0000
commit9de9b9dfbe6b00c63e44e5497718ae4fc77b8ffe (patch)
tree33912ccc6b73458cc8b76f9a93398aa0203ebb4d /utils/tcctool/Makefile
parentcdcca8775f5109cb7fdae8277c2f2a647d0ec8d9 (diff)
downloadrockbox-9de9b9dfbe6b00c63e44e5497718ae4fc77b8ffe.tar.gz
rockbox-9de9b9dfbe6b00c63e44e5497718ae4fc77b8ffe.zip
Take version number from SVN, or via VERSION variable in Makefile - i.e. use "make VERSION=v1.0" to build with that version number.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25774 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/tcctool/Makefile')
-rw-r--r--utils/tcctool/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/tcctool/Makefile b/utils/tcctool/Makefile
index 4e1ec476ab..7258f2f8cd 100644
--- a/utils/tcctool/Makefile
+++ b/utils/tcctool/Makefile
@@ -1,7 +1,11 @@
1# This contains the file to upload 1# This contains the file to upload
2ROMFILE=player.rom 2ROMFILE=player.rom
3 3
4CFLAGS=-Wall -W -I/usr/local/include 4ifndef VERSION
5VERSION=$(shell ../../tools/version.sh)
6endif
7
8CFLAGS=-Wall -W -I/usr/local/include -DVERSION=\"$(VERSION)\"
5 9
6ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN) 10ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
7OUTPUT=tcctool.exe 11OUTPUT=tcctool.exe