diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -124,6 +124,16 @@ distribute: distribute-rpm distribute-deb distribute-tar distribute-flatpak release: package distribute +# We can't do cross compile, so for now let's just make it easy to release +# on arm here +arm: +ifneq ($(channel),) + $(MAKE) -e profile=release -e channel=$(channel) -e target=aarch64-unknown-linux-gnu release +else + $(MAKE) -e profile=release -e channel=unstable -e target=aarch64-unknown-linux-gnu release +endif + + # Installation ################################################################# install: build |