summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-02-25 13:49:51 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-07 02:41:20 -0800
commitf9ba524a8e333388da0d3be1ca70240340a2b32b (patch)
tree7b9d739bdedaf85a714e5872de10319b52012df6 /makefile
parente324d1edab22ed45e38aaf028b1af51460892151 (diff)
Fix version number update for hardcoding.
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/makefile b/makefile
index 57b0486..fbd040c 100644
--- a/makefile
+++ b/makefile
@@ -50,6 +50,8 @@ uikit += -framework UIKit
backrow :=
backrow += -FAppleTV -framework BackRow -framework AppleTV
+version := $(shell ./version.sh)
+
#cycc = cycc -r4.2 -i$(ios) -o$@
gxx := /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++-$(gcc)
cycc = $(gxx) -mthumb -arch armv6 -o $@ -mcpu=arm1176jzf-s -miphoneos-version-min=2.0 -isysroot $(sdk) -idirafter /usr/include -F/Library/Frameworks
@@ -62,16 +64,13 @@ clean:
%.o: %.c
$(cycc) -c -o $@ -x c $<
-Version.h:
- ./Version.h.sh
-
sysroot:
@echo "Please read compiling.txt: you do not have a ./sysroot/ folder with the on-device requirements." 1>&2
@echo 1>&2
@exit 1
-MobileCydia: sysroot Version.h MobileCydia.mm UICaboodle/*.h UICaboodle/*.mm SDURLCache/SDURLCache.h SDURLCache/SDURLCache.m iPhonePrivate.h lookup3.o Cytore.hpp
- $(cycc) $(filter %.mm,$^) $(filter %.o,$^) $(foreach m,$(filter %.m,$^),-x objective-c++ $(m)) $(flags) $(link) $(uikit)
+MobileCydia: sysroot MobileCydia.mm UICaboodle/*.h UICaboodle/*.mm SDURLCache/SDURLCache.h SDURLCache/SDURLCache.m iPhonePrivate.h lookup3.o Cytore.hpp
+ $(cycc) $(filter %.mm,$^) $(filter %.o,$^) $(foreach m,$(filter %.m,$^),-x objective-c++ $(m)) $(flags) $(link) $(uikit) -DCYDIA_VERSION='"$(version)"'
ldid -Slaunch.xml $@ || { rm -f $@ && false; }
CydiaAppliance: CydiaAppliance.mm
@@ -109,7 +108,7 @@ package: MobileCydia
sudo chmod 6755 _/Applications/Cydia.app/MobileCydia
mkdir -p debs
- ln -sf debs/cydia_$$(./version.sh)_iphoneos-arm.deb Cydia.deb
+ ln -sf debs/cydia_$(version)_iphoneos-arm.deb Cydia.deb
$(dpkg) -b _ Cydia.deb
@echo "$$(stat -L -f "%z" Cydia.deb) $$(stat -f "%Y" Cydia.deb)"