-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMakefile
More file actions
52 lines (36 loc) · 845 Bytes
/
Makefile
File metadata and controls
52 lines (36 loc) · 845 Bytes
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
50
51
52
UNAME := $(shell uname)
ifeq ($(UNAME), Linux)
MAKEFILE=Makefile.linux
else
MAKEFILE=Makefile.windows
endif
all:
$(MAKE) -f $(MAKEFILE)
clean:
$(MAKE) -f $(MAKEFILE) clean
clear-smoke:
$(MAKE) -f $(MAKEFILE) clear-smoke
copy-apk:
$(MAKE) -f $(MAKEFILE) copy-apk
debug-with-source:
$(MAKE) -f $(MAKEFILE) debug-with-source
distclean:
$(MAKE) -f $(MAKEFILE) distclean
kill-adb-server:
$(MAKE) -f $(MAKEFILE) kill-adb-server
kill-gradle-daemon:
$(MAKE) -f $(MAKEFILE) kill-gradle-daemon
list-devices:
$(MAKE) -f $(MAKEFILE) list-devices
list-files:
$(MAKE) -f $(MAKEFILE) list-files
load-apk:
$(MAKE) -f $(MAKEFILE) load-apk
pull-database:
$(MAKE) -f $(MAKEFILE) pull-database
purge:
$(MAKE) -f $(MAKEFILE) purge
remove-database:
$(MAKE) -f $(MAKEFILE) remove-database
stop-smoke:
$(MAKE) -f $(MAKEFILE) stop-smoke