Files
vendor_gapps/build/main.mk
LuK1337 8661048075 Get rid of x86 support
Doesn't seem like x86 GMS exists anymore as it's not available as GSI
nor Android SDK image.
2024-10-04 11:28:09 +02:00

23 lines
482 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 "Output removed! Ready for a clean build"
gapps_arm:
@echo "Compiling GApps for arm..."
@bash $(BUILD_GAPPS) arm 2>&1
gapps_arm64:
@echo "Compiling GApps for arm64..."
@bash $(BUILD_GAPPS) arm64 2>&1
gapps_x86_64:
@echo "Compiling GApps for x86_64..."
@bash $(BUILD_GAPPS) x86_64 2>&1