Quick Start

The purpose of this document is to compile the code of this directory and subdirectories directly in each level of directory.

Install depends

$ sudo make deps

Config

$ make config

Install and Uninstall

$ sudo make install
$ sudo make uninstall

Compile in Top Directory

You’d better compiled under git-repo, because some Makefile use git rev-parse –show-toplevel get top-dir.

$ make build

Compile without kernel modules:

$ make build KMOD=0

Compile with -m32:

$ make build M32=1

Compile with verbose:

$ make build V=1

Stop immediately when an error occurs:

$ make build CHECK_ERROR=1