]> git.saurik.com Git - uikittools.git/blobdiff - makefile
We seem to no longer need the Xcode 4.6 toolchain.
[uikittools.git] / makefile
index 36ed0db1943f0331be72a9748183a100b16c77fa..77f014c42037405408043941f888019527ee8134 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,4 +1,4 @@
-uikittools = uiduid uicache uiopen gssc sbdidlaunch sbreload cfversion iomfsetgamma libuicache.dylib
+uikittools = uiduid uicache uiopen gssc sbdidlaunch sbreload cfversion iomfsetgamma
 
 all: $(uikittools)
 
@@ -9,36 +9,31 @@ clean:
 
 private := -F/System/Library/PrivateFrameworks
 
-cfversion := -framework CoreFoundation
-gssc := -lobjc -framework CoreFoundation
+flags := -Os -Werror
+flags += -framework CoreFoundation
+flags += -framework Foundation
+
+gssc := -lobjc
 iomfsetgamma := -I. $(private) -framework IOKit -framework IOMobileFramebuffer
-sbdidlaunch := $(private) -framework CoreFoundation -framework SpringBoardServices
-sbreload := -framework CoreFoundation
-uicache := -framework Foundation -framework UIKit # XXX: UIKit -> MobileCoreServices
-uiduid := -framework Foundation -framework UIKit
-uiopen := -framework Foundation -framework UIKit
-uishoot := -framework CoreFoundation -framework Foundation -framework UIKit
-extrainst_ := -framework CoreFoundation -framework Foundation
+sbdidlaunch := $(private) -framework SpringBoardServices
+uicache := -framework UIKit # XXX: UIKit -> MobileCoreServices
+uiduid := -framework UIKit
+uiopen := -framework UIKit
+uishoot := -framework UIKit
 
 uicache: csstore.cpp
 extrainst_: csstore.cpp
 
-%.dylib: %.mm
-       cycc -i2.0 -o$@ -- -dynamiclib -Werror $^ $($@) -lobjc
-       ldid -S $@
-
 %: %.mm
-       cycc -i2.0 -o$@ -- -Werror $^ $($@)
+       cycc -i2.0 -o$@ -- $^ $(flags) $($@)
        ldid -S$(wildcard $@.xml) $@
 
 %: %.c
-       cycc -i2.0 -o$@ -- -Werror -x c $^ $($@)
+       cycc -i2.0 -o$@ -- -x c $^ $(flags) $($@)
        ldid -S$(wildcard $@.xml) $@
 
 package: all extrainst_
        sudo rm -rf _
-       mkdir -p _/usr/lib
-       cp -a $(filter %.dylib,$(uikittools)) _/usr/lib
        mkdir -p _/usr/bin
        cp -a $(filter-out %.dylib,$(uikittools)) _/usr/bin
        mkdir -p _/DEBIAN