62 lines
1.7 KiB
Makefile
62 lines
1.7 KiB
Makefile
# By YZBruh
|
|
|
|
# Copyright 2024 Partition Manager
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# speficy
|
|
VERSION := 1.9.0
|
|
VERSION_CODE := 190
|
|
TARGET := pmt
|
|
LANG := en
|
|
|
|
# device arch info
|
|
ARCH := $(shell uname -m)
|
|
OS := $(shell uname)
|
|
|
|
# current directory
|
|
CUR_DIR := $(shell pwd)
|
|
|
|
# NDK config
|
|
$(shell err() { echo "$1" && exit 1 })
|
|
$(shell [ -d ../android-ndk ] || err "error: ndk not found")
|
|
NDK_DIR := $(shell cd ../android-ndk && pwd && cd -)
|
|
|
|
ifeq ($(OS),Linux)
|
|
TOOLCHAIN := $(NDK_DIR)/toolchains/llvm/prebuilt/darwin-x86_64
|
|
else ifeq ($(OS),Linux)
|
|
TOOLCHAIN := $(NDK_DIR)/toolchains/llvm/prebuilt/linux-x86_64
|
|
endif
|
|
|
|
ifeq ($(TARGET_BUILD_ARCH),aarch64)
|
|
TARGET_ARCH := aarch64-linux-android
|
|
else ifeq ($(TARGET_BUILD_ARCH),armv7a)
|
|
TARGET_ARCH := armv7a-linux-androideabi
|
|
endif
|
|
|
|
API := 21
|
|
|
|
# compiler
|
|
CC ?= $(TOOLCHAIN)/bin/$(TARGET_ARCH)$(API)-clang
|
|
|
|
# source config
|
|
SOURCE_DIR ?= $(CUR_DIR)/src
|
|
OUT_DIR := $(CUR_DIR)/out
|
|
BINARY_DIR := $(OUT_DIR)/binary
|
|
PACKAGE_DIR := $(OUT_DIR)/package
|
|
DEB_DIR := $(OUT_DIR)/deb
|
|
DEBUTILS_DIR := $(CUR_DIR)/debutils
|
|
DEBTERMUX_USR := $(DEBUTILS_DIR)/temp/data/data/com.termux/files/usr
|
|
TERMUX_BIN := /data/data/com.termux/files/usr/bin
|
|
TERMUX_USR := /data/data/com.termux/files/usr
|