fae202e2e2
The old install command was: make install T=x86_64-native-linuxapp-gcc DESTDIR=install It still works and can be replaced by these more standard commands: make config T=x86_64-native-linuxapp-gcc 0=x86_64-native-linuxapp-gcc make O=x86_64-native-linuxapp-gcc make install O=x86_64-native-linuxapp-gcc prefix= DESTDIR=install It means the "make install" do not perform any compilation anymore when T is not used. It is done only in pre_install to keep compatibility with the old syntax based on T= option. The default prefix /usr/local is empty in the T= case which is used only for a local install. Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com> Acked-by: Panu Matilainen <pmatilai@redhat.com>
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
Basic build
|
|
make config T=x86_64-native-linuxapp-gcc && make
|
|
Build commands
|
|
config get configuration from target template (T=)
|
|
all same as build (default rule)
|
|
build build in a configured directory
|
|
clean remove files but keep configuration
|
|
install T= configure, build and install a target in DESTDIR
|
|
install install optionally staged in DESTDIR
|
|
examples build examples for given targets (T=)
|
|
examples_clean clean examples for given targets (T=)
|
|
Build variables
|
|
EXTRA_CPPFLAGS preprocessor options
|
|
EXTRA_CFLAGS compiler options
|
|
EXTRA_LDFLAGS linker options
|
|
EXTRA_LDLIBS linker library options
|
|
RTE_KERNELDIR linux headers path
|
|
CROSS toolchain prefix
|
|
V verbose
|
|
D debug dependencies
|
|
O build directory (default: build/ - install T= default: ./)
|
|
DESTDIR staging install directory
|
|
prefix root install directory
|
|
T target template - used with config or install
|
|
format: <arch-machine-execenv-toolchain>
|
|
templates in config/defconfig_*
|