Files
vendor_gapps/build/main.mk
Luca Stefani 564bc97ae4 Fix javelinanddart's shit
Signed-off-by: Paul Keith <javelinanddart@bestas.gr>
2017-04-06 13:00:51 -05:00

23 rader
473 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:
@echo "Compiling GApps for x86..."
@bash $(BUILD_GAPPS) x86 2>&1