forked from markusfisch/ShaderEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (29 loc) · 699 Bytes
/
Makefile
File metadata and controls
43 lines (29 loc) · 699 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
PACKAGE = de.markusfisch.android.shadereditor
all: debug install start
debug:
./gradlew assembleDebug
release: lint findbugs
./gradlew assembleRelease
bundle: lint findbugs
./gradlew bundleRelease
lint:
./gradlew lintDebug
findbugs:
./gradlew findBugs
infer: clean
infer -- ./gradlew assembleDebug
install:
adb $(TARGET) install -r app/build/outputs/apk/debug/app-debug.apk
start:
adb $(TARGET) shell 'am start -n \
$(PACKAGE).debug/$(PACKAGE).activity.SplashActivity'
uninstall:
adb $(TARGET) uninstall $(PACKAGE).debug
meminfo:
adb shell dumpsys meminfo $(PACKAGE).debug
glxinfo:
adb shell dumpsys gfxinfo $(PACKAGE).debug
images:
svg/update.sh
clean:
./gradlew clean