mirror of
https://github.com/koreader/koreader.git
synced 2025-12-13 20:36:53 +01:00
add target: debian-arm64 (#6909)
This commit is contained in:
3
Makefile
3
Makefile
@@ -552,6 +552,9 @@ else ifeq ($(TARGET), debian-armel)
|
||||
else ifeq ($(TARGET), debian-armhf)
|
||||
make debianupdate
|
||||
$(CURDIR)/platform/debian/do_debian_package.sh $(INSTALL_DIR) armhf
|
||||
else ifeq ($(TARGET), debian-arm64)
|
||||
make debianupdate
|
||||
$(CURDIR)/platform/debian/do_debian_package.sh $(INSTALL_DIR) arm64
|
||||
else ifeq ($(TARGET), macos)
|
||||
make macosupdate
|
||||
$(CURDIR)/platform/mac/do_mac_bundle.sh $(INSTALL_DIR)
|
||||
|
||||
2
base
2
base
Submodule base updated: f0f781f712...5d2695b520
12
kodev
12
kodev
@@ -162,6 +162,7 @@ SUPPORTED_TARGETS="
|
||||
debian Debian package for current arch
|
||||
debian-armel Debian package for generic armel devices
|
||||
debian-armhf Debian package for generic armhf devices
|
||||
debian-arm64 Debian package for generic 64 bits arm devices
|
||||
macos MacOS app bundle. You need a mac to build this package
|
||||
emu (*default) If no TARGET is given, assume emulator
|
||||
win32
|
||||
@@ -281,6 +282,10 @@ ${SUPPORTED_TARGETS}"
|
||||
make TARGET=debian-armhf
|
||||
assert_ret_zero $?
|
||||
;;
|
||||
debian-arm64)
|
||||
make TARGET=debian-arm64
|
||||
assert_ret_zero $?
|
||||
;;
|
||||
macos)
|
||||
is_mac
|
||||
make TARGET=macos
|
||||
@@ -378,6 +383,9 @@ ${SUPPORTED_TARGETS}"
|
||||
debian-armhf)
|
||||
make TARGET=debian-armhf clean
|
||||
;;
|
||||
debian-arm64)
|
||||
make TARGET=debian-arm64 clean
|
||||
;;
|
||||
macos)
|
||||
is_mac
|
||||
make TARGET=macos clean
|
||||
@@ -515,6 +523,10 @@ ${SUPPORTED_RELEASE_TARGETS}"
|
||||
kodev-build debian-armhf
|
||||
make TARGET=debian-armhf update
|
||||
;;
|
||||
debian-arm64)
|
||||
kodev-build debian-arm64
|
||||
make TARGET=debian-arm64 update
|
||||
;;
|
||||
macos)
|
||||
is_mac
|
||||
kodev-build macos
|
||||
|
||||
Reference in New Issue
Block a user