First commit

This commit is contained in:
linuxxxxx
2015-04-20 15:22:46 +02:00
commit ee8b7e1415
67 changed files with 449 additions and 0 deletions

14
build/main.mk Normal file
View File

@@ -0,0 +1,14 @@
# 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..."
@bash $(BUILD_GAPPS) 2>&1 | tee $(LOG_BUILD)