-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
26 lines (19 loc) · 874 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This project uses [GNU autotools][https://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html] for portability.
## Requirements
You'll need the following GNU tools:
autoconf, automake, make, m4, perl, gcc
## Porting
aclocal && autoheader && autoconf && automake --add-missing && ./configure
## Building
$ mkdir ../m3ua.build (create build directory)
$ cd ../m3ua.build (change working directory for build)
$ ../m3ua/configure (creates Makefiles)
$ make (builds entire package)
$ make check (run dialyzer and common_test)
## Installing
$ sudo make install (installs embedded application in system)
## Cleaning
$ make clean (removes files created with make)
$ make distclean (removes files created with configure also)
## Options
$ ../m3ua/configure --enable-debug