diff options
author | Todor Tomov <ttomov@mm-sol.com> | 2011-02-03 10:50:48 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-02-07 16:32:44 +0100 |
commit | d4968694e251f603e7c2b91608746cf4c382723a (patch) | |
tree | 6a46bfc59051f7469824108a8819dd08dd75f59e /INSTALL | |
parent | 14ddd592a6fcba2ceb751c0d4b0a3b5d46f2a59f (diff) |
Use autotools
Use autoconf and automake for building.
Quick instructions are added in INSTALL.
Application source files are moved to src subdirectory.
Signed-off-by: Todor Tomov <ttomov@mm-sol.com>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -0,0 +1,26 @@ +Building: +--------- + +Useful 'configure' options: + --with-kernel-headers=DIR path of Linux kernel headers, + default /usr/src/kernel-headers. + + --host=TYPE host platform for cross-compilation. + + +Building: +$ autoreconf --install +$ ./configure [--with-kernel-headers=DIR] [--host=TYPE] +$ make + + +Installing: +----------- + +$ sudo make install + + +Uninstalling: +------------- + +$ sudo make uninstall |