- x86 files (kindly given by @balika011) > 1cfeda8a9dbe1a328259edb42f48f0e4ea716072 - Update compilation script Signed-off-by: jrizzoli <joey@cyanogenmoditalia.it>
23 lines
544 B
Makefile
23 lines
544 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)"
|
|
|
|
arm :
|
|
@echo "Compiling GApps for arm..."
|
|
@bash $(BUILD_GAPPS) arm 2>&1 | tee $(LOG_BUILD)
|
|
|
|
arm64 :
|
|
@echo "Compiling GApps for arm64..."
|
|
@bash $(BUILD_GAPPS) arm64 2>&1 | tee $(LOG_BUILD)
|
|
|
|
x86 :
|
|
@echo "Compiling GApps for x86..."
|
|
@bash $(BUILD_GAPPS) x86 2>&1 | tee $(LOG_BUILD)
|