-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.maintainer
32 lines (26 loc) · 1 KB
/
README.maintainer
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
26
27
28
29
30
31
## Requirements
You'll need the following GNU tools:
- autoconf
- automake
- make
## Maintainer Build
1. aclocal (creates aclocal.m4)
2. autoheader (creates config.h.in)
3. autoconf (creates configure & autom4te.cache)
4. automake --add-missing (creates Makefile.in)
Note:
5. autoreconf (remakes above files after changes)
## Building
1. mkdir ../inap.build (create build directory)
2. cp README.build ../inap.build/README
3. cd ../inap.build (change working directory for build)
4. ../inap/configure (creates Makefiles)
5. make (builds entire package)
6. make check (run dialyzer and common_test)
## Installing
1. sudo make install (installs embedded application in system)
## Cleaning
1. make clean (removes files created with make)
2. make distclean (removes files created with configure also)
## Options
../inap/configure --enable-debug