diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-11 07:03:55 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-11 07:03:55 -0800 |
commit | 3d45bad15ac9a3bee8d6aa3ffa9f0bc3c6a480fd (patch) | |
tree | 09413db652c1045743951acabd95eed6d933b341 | |
parent | 24e12629ee1fa2c705128132bac182b7c8c216c1 (diff) |
Separate out Version.mm: faster compile.
-rw-r--r-- | MobileCydia.mm | 7 | ||||
-rw-r--r-- | Version.mm | 3 | ||||
-rw-r--r-- | makefile | 4 |
3 files changed, 8 insertions, 6 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index bd5ddb9..f842c17 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -208,8 +208,7 @@ void PrintTimes() { #define _end } /* }}} */ -#include "Version.h" -#define Cydia_ CYDIA_VERSION +extern NSString *Cydia_; #define lprintf(args...) fprintf(stderr, args) @@ -3987,7 +3986,7 @@ static _H<NSMutableSet> Diversions_; } - (NSString *) version { - return @ Cydia_; + return Cydia_; } - (NSString *) device { @@ -4594,7 +4593,7 @@ static _H<NSMutableSet> Diversions_; } - (NSString *) applicationNameForUserAgent { - NSString *application([NSString stringWithFormat:@"Cydia/%@", @ Cydia_]); + NSString *application([NSString stringWithFormat:@"Cydia/%@", Cydia_]); if (Safari_ != nil) application = [NSString stringWithFormat:@"Safari/%@ %@", Safari_, application]; diff --git a/Version.mm b/Version.mm new file mode 100644 index 0000000..83f5982 --- /dev/null +++ b/Version.mm @@ -0,0 +1,3 @@ +#include <Foundation/Foundation.h> +#include "Version.h" +NSString *Cydia_ = @ CYDIA_VERSION; @@ -67,7 +67,7 @@ dirs := Menes CyteKit Cydia SDURLCache code := $(foreach dir,$(dirs),$(wildcard $(foreach ext,h hpp c cpp m mm,$(dir)/*.$(ext)))) code := $(filter-out SDURLCache/SDURLCacheTests.m,$(code)) -code += MobileCydia.mm iPhonePrivate.h Cytore.hpp lookup3.c +code += MobileCydia.mm Version.mm iPhonePrivate.h Cytore.hpp lookup3.c source := $(filter %.m,$(code)) $(filter %.mm,$(code)) source += $(filter %.c,$(code)) $(filter %.cpp,$(code)) @@ -106,7 +106,7 @@ Objects/%.o: %.mm $(header) @echo "[cycc] $<" @$(cycc) -c -o $@ $< $(flags) $(xflags) -Objects/MobileCydia.o: version.h +Objects/Version.o: version.h Images/%.png: %.png @mkdir -p $(dir $@) |