forked from calabash/calabash-ios-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
50 lines (38 loc) · 1014 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
all:
$(MAKE) framework
$(MAKE) frank
$(MAKE) dylibs
clean:
rm -rf build
rm -rf Products
rm -rf calabash.framework
rm -rf libFrankCalabash.a
rm -rf calabash-dylibs
framework:
bin/make/framework.sh
frank:
bin/make/frank-plugin.sh
dylibs:
# The argument is the sha of the developer.p12 used to resign the dylib.
# See https://github.com/calabash/calabash-codesign for details.
bin/make/dylibs.sh 7bcdf1e95ae393eadfca69b607a19077fcf1f5625fcbd5f3d0d182eb0cd5ed36
webquery_headers:
bundle exec bin/make/insert-js-into-webquery-headers.rb
xct:
$(MAKE) xctests
xctests:
bundle exec bin/test/xctest.rb
# Makes the LPTestTarget.app without Calabash linked.
# This target is suitable for testing dylib injection.
app:
bin/make/app.sh
# Makes the LPTestTarget with Calabash linked.
app-cal:
bin/make/app-cal.sh
# Make the LPTestTarget with Calabash linked
ipa-cal:
bin/make/ipa-cal.sh
# For developers only. This script is not part of the library
# build process.
version:
bin/make/version.sh