diff options
| author | Přemysl Eric Janouch <p@janouch.name> | 2025-11-03 17:53:50 +0100 | 
|---|---|---|
| committer | Přemysl Eric Janouch <p@janouch.name> | 2025-11-03 17:58:32 +0100 | 
| commit | 5c41eab9d78cea2d2000f0a7c9c3cb121e15b242 (patch) | |
| tree | 4fc1629ccb294ca5bf8f465894b8fc82a6849fa3 | |
| parent | 99c95edd5701ceccbd549aded46cf1fe2a09ada8 (diff) | |
| download | xK-5c41eab9d78cea2d2000f0a7c9c3cb121e15b242.tar.gz xK-5c41eab9d78cea2d2000f0a7c9c3cb121e15b242.tar.xz xK-5c41eab9d78cea2d2000f0a7c9c3cb121e15b242.zip  | |
xA: add a Makefile rule for Android
| -rw-r--r-- | xA/.gitignore | 1 | ||||
| -rw-r--r-- | xA/Makefile | 2 | 
2 files changed, 3 insertions, 0 deletions
diff --git a/xA/.gitignore b/xA/.gitignore index 5e6a147..2fc8b1c 100644 --- a/xA/.gitignore +++ b/xA/.gitignore @@ -1,4 +1,5 @@  /xA +/xA.apk  /proto.go  /FyneApp.toml  /*.png diff --git a/xA/Makefile b/xA/Makefile index d0f0449..0770fcf 100644 --- a/xA/Makefile +++ b/xA/Makefile @@ -32,5 +32,7 @@ proto.go: $(tools)/lxdrgen.awk $(tools)/lxdrgen-go.awk ../xC.lxdr  xA: xA.go ../xK-version $(generated)  	go build -ldflags "-X 'main.projectVersion=$$(cat ../xK-version)'" -o $@ \  		-gcflags=all="-N -l" +xA.apk: $(generated) +	fyne package -os android  clean:  	rm -f $(outputs)  | 
