Skip to content

Instantly share code, notes, and snippets.

View mohan-barathi's full-sized avatar

Mohan Barathi mohan-barathi

View GitHub Profile
@mohan-barathi
mohan-barathi / steps_to_create_repo.sh
Created September 20, 2019 05:04
Steps to intsall and creare repo
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
mkdir working-directory-name
cd working-directory-name
repo init -u git://android.git.kernel.org/platform/manifest.git
@mohan-barathi
mohan-barathi / Makefile
Created July 3, 2019 09:44
Makefile : Tensorflow-lite compilation for aarch64 architecture
# Make uses /bin/sh by default, which is incompatible with the bashisms seen
# below.
# Thanks to T-Troll <issue 29806> and freedomtan <issue 26731>
SHELL := /bin/bash
# Find where we're running from, so we can store generated files here.
ifeq ($(origin MAKEFILE_DIR), undefined)
MAKEFILE_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
endif