-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.maintainer
33 lines (27 loc) · 1.04 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
32
## Requirements
You'll need the following GNU tools:
- autoconf
- automake
- make
- pkg-config
## 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 ../cse.build (create build directory)
2. cp README.build ../cse.build/README (detailed build instructions)
3. cd ../cse.build (change working directory for build)
4. ../cse/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
../cse/configure --enable-debug