mirror of
https://github.com/aljazceru/notedeck.git
synced 2026-01-09 11:24:19 +01:00
This is a fairly large rewrite which unifies our threads, timelines and profiles. Now all timelines have a MultiSubscriber, and can be added and removed to columns just like Threads and Profiles. Signed-off-by: William Casarin <jb55@jb55.com>
22 lines
449 B
Makefile
22 lines
449 B
Makefile
.DEFAULT_GOAL := check
|
|
.PHONY: fake
|
|
|
|
ANDROID_DIR := crates/notedeck_chrome/android
|
|
|
|
check:
|
|
cargo check
|
|
|
|
tags: fake
|
|
rusty-tags vi
|
|
|
|
jni: fake
|
|
cargo ndk --target arm64-v8a -o $(ANDROID_DIR)/app/src/main/jniLibs/ build --profile release
|
|
|
|
apk: jni
|
|
cd $(ANDROID_DIR) && ./gradlew build
|
|
|
|
android: jni
|
|
cd $(ANDROID_DIR) && ./gradlew installDebug
|
|
adb shell am start -n com.damus.notedeck/.MainActivity
|
|
adb logcat -v color -s notedeck RustStdoutStderr
|