]> git.saurik.com Git - cydia.git/blobdiff - makefile
Disallow serializing error URLs to the state.
[cydia.git] / makefile
index ee64dc9020879ecaf490ab4b00f8a8dfd207ab01..8679cc55f843ca8756b5fcbf04932e37a4042188 100644 (file)
--- a/makefile
+++ b/makefile
@@ -25,7 +25,10 @@ flags += -I. -isystem sysroot/usr/include -Lsysroot/usr/lib
 flags += -Wall -Werror -Wno-deprecated-declarations
 flags += -fmessage-length=0
 flags += -g0 -O2
-flags += -fobjc-call-cxx-cdtors -fobjc-exceptions
+flags += -fobjc-exceptions
+
+xflags :=
+xflags += -fobjc-call-cxx-cdtors
 
 link += -framework CoreFoundation
 link += -framework CoreGraphics
@@ -55,24 +58,58 @@ 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
+cycc = $(gxx) -mthumb -arch armv6 -o $@ -mcpu=arm1176jzf-s -miphoneos-version-min=2.0 -isysroot $(sdk) -idirafter /usr/include -F{sysroot,}/Library/Frameworks
+
+flags += -DCYDIA_VERSION='"$(version)"'
+
+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
+
+source := $(filter %.m,$(code)) $(filter %.mm,$(code))
+source += $(filter %.c,$(code)) $(filter %.cpp,$(code))
+header := $(filter %.h,$(code)) $(filter %.hpp,$(code))
+
+object := $(source)
+object := $(object:.c=.o)
+object := $(object:.cpp=.o)
+object := $(object:.m=.o)
+object := $(object:.mm=.o)
+object := $(object:%=Objects/%)
 
 all: MobileCydia
 
 clean:
        rm -f MobileCydia
+       rm -rf Objects/
+
+Objects/%.o: %.c $(header)
+       @mkdir -p $(dir $@)
+       @echo "[cycc] $<"
+       @$(cycc) -c -o $@ -x c $<
 
-%.o: %.c
-       $(cycc) -c -o $@ -x c $<
+Objects/%.o: %.m $(header)
+       @mkdir -p $(dir $@)
+       @echo "[cycc] $<"
+       @$(cycc) -c -o $@ $< $(flags)
+
+Objects/%.o: %.mm $(header)
+       @mkdir -p $(dir $@)
+       @echo "[cycc] $<"
+       @$(cycc) -c -o $@ $< $(flags) $(xflags)
 
 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 MobileCydia.mm CyteKit/*.h CyteKit/*.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; }
+MobileCydia: sysroot $(object)
+       @echo "[link] $(object:Objects/%=%)"
+       @$(cycc) $(filter %.o,$^) $(flags) $(link) $(uikit)
+       @echo "[sign] $@"
+       @ldid -Slaunch.xml $@ || { rm -f $@ && false; }
 
 CydiaAppliance: CydiaAppliance.mm
        $(cycc) $(filter %.mm,$^) $(flags) -bundle $(link) $(backrow)
@@ -96,9 +133,6 @@ package: MobileCydia
        #cp -a Cydia.frappliance _/Applications/Lowtide.app/Appliances
        #cp -a CydiaAppliance _/Applications/Lowtide.app/Appliances/Cydia.frappliance
        
-       mkdir -p _/System/Library/PreferenceBundles
-       cp -a CydiaSettings.bundle _/System/Library/PreferenceBundles/CydiaSettings.bundle
-       
        mkdir -p _/DEBIAN
        ./control.sh _ >_/DEBIAN/control