- Make for different platforms (arm, arm64, x86) - Add arm64 support - Update GNow - Fix FaceUnlock FC
23 lines
560 B
Makefile
23 lines
560 B
Makefile
# build paths
|
|
TOPDIR := .
|
|
BUILD_SYSTEM := $(TOPDIR)/build
|
|
BUILD_GAPPS := $(BUILD_SYSTEM)/gapps.sh
|
|
OUTDIR := $(TOPDIR)/out
|
|
LOG_BUILD := /tmp/gapps_log
|
|
|
|
distclean :
|
|
@rm -fr $(OUTDIR)
|
|
@echo "$(tput setaf 2)Output removed! Ready for a clean build$(tput sgr 0)"
|
|
|
|
gapps :
|
|
@echo "Compiling GApps for arm..."
|
|
@bash $(BUILD_GAPPS) arm 2>&1 | tee $(LOG_BUILD)
|
|
|
|
gapps_arm64 :
|
|
@echo "Compiling GApps for arm64..."
|
|
@bash $(BUILD_GAPPS) arm64 2>&1 | tee $(LOG_BUILD)
|
|
|
|
gapps_x86 :
|
|
@echo "Compiling GApps for arm64..."
|
|
@bash $(BUILD_GAPPS) x86 2>&1 | tee $(LOG_BUILD)
|