
- Fix removal of faceunlock (@ShevT > 1d4f9afc144843459a2f7c19d269996c688874aa) - Fix typo in addon.d script - Add md5 calculation (based on @pete4abw > ae166a10ad8c683182a1cd437242520254e40684) - Improve log content (aka make it useful) Signed-off-by: jrizzoli <joey@cyanogenmoditalia.it>
23 lines
487 B
Makefile
23 lines
487 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
|
|
|
|
arm64 :
|
|
@echo "Compiling GApps for arm64..."
|
|
@bash $(BUILD_GAPPS) arm64 2>&1
|
|
|
|
x86 :
|
|
@echo "Compiling GApps for x86..."
|
|
@bash $(BUILD_GAPPS) x86 2>&1
|