]>
Commit | Line | Data |
---|---|---|
1 | # Cycript - Optimizing JavaScript Compiler/Runtime | |
2 | # Copyright (C) 2009-2015 Jay Freeman (saurik) | |
3 | ||
4 | # GNU Affero General Public License, Version 3 {{{ | |
5 | # | |
6 | # This program is free software: you can redistribute it and/or modify | |
7 | # it under the terms of the GNU Affero General Public License as published by | |
8 | # the Free Software Foundation, either version 3 of the License, or | |
9 | # (at your option) any later version. | |
10 | # | |
11 | # This program is distributed in the hope that it will be useful, | |
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | # GNU Affero General Public License for more details. | |
15 | # | |
16 | # You should have received a copy of the GNU Affero General Public License | |
17 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
18 | # }}} | |
19 | ||
20 | .SECONDARY: | |
21 | .DELETE_ON_ERROR: | |
22 | SHELL := /bin/bash | |
23 | ||
24 | include codesign.mk | |
25 | ||
26 | lipo := $(shell xcrun --sdk iphoneos -f lipo) | |
27 | ||
28 | monotonic := $(shell git log -1 --pretty=format:%ct) | |
29 | version := $(shell git describe --always --tags --dirty="+" --match="v*" | sed -e 's@-\([^-]*\)-\([^-]*\)$$@+\1.\2@;s@^v@@;s@%@~@g') | |
30 | ||
31 | deb := cycript_$(version)_iphoneos-arm.deb | |
32 | zip := cycript_$(version).zip | |
33 | ||
34 | cycript := | |
35 | cycript += Cycript.lib/cycript | |
36 | cycript += Cycript.lib/cycript0.9 | |
37 | cycript += Cycript.lib/libcycript.dylib | |
38 | cycript += Cycript.lib/libcycript-sys.dylib | |
39 | cycript += Cycript.lib/libcycript-sim.dylib | |
40 | ||
41 | framework := | |
42 | framework += Cycript | |
43 | framework += Headers/Cycript.h | |
44 | ||
45 | framework := $(foreach os,ios osx,$(foreach file,$(framework),Cycript.$(os)/Cycript.framework/$(file))) | |
46 | ||
47 | links := | |
48 | links += Cycript.lib/cynject | |
49 | links += Cycript.lib/libsubstrate.dylib | |
50 | links += Cycript.lib/cycript0.9 | |
51 | ||
52 | all := cycript $(cycript) $(framework) | |
53 | all: $(all) | |
54 | ||
55 | $(zip): $(all) | |
56 | rm -f $@ | |
57 | zip -r9y $@ cycript Cycript.lib Cycript.{ios,osx} $(patsubst %,--exclude %,$(links)) | |
58 | zip -r9 $@ $(links) | |
59 | ||
60 | zip: $(zip) | |
61 | ln -sf $< cycript.zip | |
62 | ||
63 | $(deb): Cycript.lib/cycript Cycript.lib/libcycript.dylib | |
64 | rm -rf package | |
65 | mkdir -p package/DEBIAN | |
66 | sed -e 's/#/$(version)/' control.in >package/DEBIAN/control | |
67 | mkdir -p package/usr/{bin,lib} | |
68 | cp -a modules package/usr/lib/cycript0.9 | |
69 | $(lipo) -extract armv6 -output package/usr/bin/cycript Cycript.lib/cycript | |
70 | $(lipo) -extract armv6 -extract arm64 -output package/usr/lib/libcycript.dylib Cycript.lib/libcycript.dylib | |
71 | ln -s libcycript.dylib package/usr/lib/libcycript.0.dylib | |
72 | fauxsu dpkg-deb -Zlzma -b package $@ | |
73 | ||
74 | deb: $(deb) | |
75 | ln -sf $< cycript.deb | |
76 | ||
77 | clean := | |
78 | ||
79 | library := libffi libuv | |
80 | ||
81 | # make stubbornly refuses to believe that these @'s are bugs | |
82 | # http://osdir.com/ml/help-make-gnu/2012-04/msg00008.html | |
83 | ||
84 | define build_lar | |
85 | Cycript.lib/$(1).a: $(1).$(2)/.libs/$(1).a | |
86 | endef | |
87 | ||
88 | define build_any | |
89 | .PHONY: build-$(1)-$(2) | |
90 | build-$(1)-$(2): | |
91 | $$(MAKE) -C build.$(1)-$(2) | |
92 | build.$(1)-$(2)/.libs/libcycript.a: build-$(1)-$(2) | |
93 | @ | |
94 | clean-$(1)-$(2): | |
95 | $$(MAKE) -C build.$(1)-$(2) clean | |
96 | clean += clean-$(1)-$(2) | |
97 | ifneq ($(1),sim) | |
98 | $(foreach lib,$(library), | |
99 | $(call build_lar,$(lib),$(2)) | |
100 | ) | |
101 | endif | |
102 | endef | |
103 | ||
104 | define build_lib | |
105 | build.$(1)-$(2)/.libs/libcycript.dylib: build-$(1)-$(2) | |
106 | @ | |
107 | endef | |
108 | ||
109 | define build_osx | |
110 | $(call build_any,osx,$(1)) | |
111 | $(call build_lib,osx,$(1)) | |
112 | build.osx-$(1)/.libs/cycript: build-osx-$(1) | |
113 | @ | |
114 | endef | |
115 | ||
116 | $(foreach arch,i386 x86_64,$(eval $(call build_osx,$(arch)))) | |
117 | ||
118 | define build_ios | |
119 | $(call build_any,ios,$(1)) | |
120 | endef | |
121 | ||
122 | $(foreach arch,armv6 armv7 armv7s arm64,$(eval $(call build_ios,$(arch)))) | |
123 | ||
124 | define build_sim | |
125 | $(call build_any,sim,$(1)) | |
126 | $(call build_lib,sim,$(1)) | |
127 | endef | |
128 | ||
129 | $(foreach arch,i386 x86_64,$(eval $(call build_sim,$(arch)))) | |
130 | ||
131 | define build_arm | |
132 | build.ios-$(1)/.libs/cycript: build-ios-$(1) | |
133 | @ | |
134 | endef | |
135 | ||
136 | $(foreach arch,armv6,$(eval $(call build_arm,$(arch)))) | |
137 | ||
138 | define build_arm | |
139 | $(call build_lib,ios,$(1)) | |
140 | endef | |
141 | ||
142 | $(foreach arch,armv6 arm64,$(eval $(call build_arm,$(arch)))) | |
143 | ||
144 | clean: $(clean) | |
145 | rm -rf cycript Cycript.lib libcycript*.o | |
146 | ||
147 | $(patsubst %,Cycript.lib/%.a,$(library)): | |
148 | @mkdir -p $(dir $@) | |
149 | $(lipo) -create -output $@ $^ | |
150 | ||
151 | Cycript.lib/libcycript.dylib: build.osx-i386/.libs/libcycript.dylib build.osx-x86_64/.libs/libcycript.dylib build.ios-armv6/.libs/libcycript.dylib build.ios-arm64/.libs/libcycript.dylib | |
152 | @mkdir -p $(dir $@) | |
153 | $(lipo) -create -output $@ $^ | |
154 | install_name_tool -change /System/Library/{,Private}Frameworks/JavaScriptCore.framework/JavaScriptCore $@ | |
155 | codesign -s $(codesign) $@ | |
156 | ||
157 | %_: % | |
158 | @cp -af $< $@ | |
159 | install_name_tool -change /System/Library/{,Private}Frameworks/JavaScriptCore.framework/JavaScriptCore $@ | |
160 | codesign -s $(codesign) --entitlement cycript-$(word 2,$(subst ., ,$(subst -, ,$*))).xml $@ | |
161 | ||
162 | Cycript.lib/%: build.osx-i386/.libs/%_ build.osx-x86_64/.libs/%_ build.ios-armv6/.libs/%_ | |
163 | @mkdir -p $(dir $@) | |
164 | $(lipo) -create -output $@ $^ | |
165 | ||
166 | Cycript.lib/libcycript-sys.dylib: | |
167 | @mkdir -p $(dir $@) | |
168 | ln -sf libcycript.dylib $@ | |
169 | ||
170 | Cycript.lib/libcycript-sim.dylib: build.sim-i386/.libs/libcycript.dylib build.sim-x86_64/.libs/libcycript.dylib | |
171 | @mkdir -p $(dir $@) | |
172 | $(lipo) -create -output $@ $^ | |
173 | codesign -s $(codesign) $@ | |
174 | ||
175 | libcycript-%.o: build.%/.libs/libcycript.a $(patsubst %,Cycript.lib/%.a,$(library)) xcode.map | |
176 | @mkdir -p $(dir $@) | |
177 | ld -r -arch $$($(lipo) -detailed_info $< | sed -e '/^Non-fat file: / ! d; s/.*: //') -o $@ -all_load -exported_symbols_list xcode.map -x $(filter %.a,$^) | |
178 | ||
179 | libcycript-ios.o: libcycript-ios-armv6.o libcycript-ios-armv7.o libcycript-ios-armv7s.o libcycript-ios-arm64.o libcycript-sim-i386.o libcycript-sim-x86_64.o | |
180 | $(lipo) -create -output $@ $^ | |
181 | ||
182 | libcycript-osx.o: libcycript-osx-i386.o libcycript-osx-x86_64.o | |
183 | $(lipo) -create -output $@ $^ | |
184 | ||
185 | Cycript.%/Cycript.framework/Cycript: libcycript-%.o | |
186 | @mkdir -p $(dir $@) | |
187 | cp -a $< $@ | |
188 | ||
189 | Cycript.%/Cycript.framework/Headers/Cycript.h: Cycript.h | |
190 | @mkdir -p $(dir $@) | |
191 | cp -a $< $@ | |
192 | ||
193 | Cycript.lib/cycript0.9: | |
194 | @mkdir -p $(dir $@) | |
195 | ln -s ../modules $@ | |
196 | ||
197 | cycript: cycript.in | |
198 | cp -af $< $@ | |
199 | chmod 755 $@ | |
200 | ||
201 | local := Cycript.lib/cycript Cycript.lib/libcycript.dylib Cycript.lib/libcycript-sys.dylib Cycript.lib/libcycript-sim.dylib | |
202 | ||
203 | debug: $(local) | |
204 | DYLD_LIBRARY_PATH=Cycript.lib lldb Cycript.lib/cycript | |
205 | ||
206 | install: $(local) | |
207 | sudo cp -af $(filter-out %.dylib,$^) /usr/bin | |
208 | sudo cp -af $(filter %.dylib,$^) /usr/lib | |
209 | ||
210 | ||
211 | cast: $(zip) | |
212 | appcast.sh cycript/mac $(monotonic) $(version) $< "$(CYCRIPT_CHANGES)" | |
213 | ||
214 | .PHONY: all cast clean debug install zip |