forked from calabash/calabash-ios-server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
49 lines (36 loc) · 802 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
all:
$(MAKE) framework
$(MAKE) dylibs
clean:
rm -rf build
rm -rf Products
rm -rf calabash.framework
rm -rf calabash-dylibs
framework:
bin/make/framework.sh
xcframework:
bin/make/xcframework.sh
dylibs:
bin/make/dylibs.sh
webquery_headers:
bundle exec bin/make/insert-js-into-webquery-headers.rb
unit-tests:
$(MAKE) xctests
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