build: Error out on implicit function declarations.
[lopsub.git] / README
1 Lopsub, the long option parser for subcommands
2 ----------------------------------------------
3
4 Documentation is available at
5
6         http://people.tuebingen.mpg.de/maan/lopsub
7
8 Alternatively, run
9
10         man -l ./lopsub.7.m4
11
12 to show build and installation instructions.
13
14 Installation
15 ------------
16 Build the package with
17
18         make
19
20 The suite parser and the config file parser of the lopsub library are
21 both generated by running flex(1), a tool for generating programs
22 that perform pattern-matching on text. Hence the flex package must
23 be installed for the build to succeed. Next, run
24
25         sudo make install
26
27 This will install the package in /usr/local.  If you prefer to install
28 as an unprivileged user in /somewhere/else, run
29
30         make PREFIX=/somewhere/else install
31
32 instead. In this case, you need to specify -I/somewhere/else/include to
33 compile the source files of your application and -L/somewhere/else/lib
34 for linking. Alternatively, don't run make install at all and specify
35 the path to the top level directory of the repository for both -I
36 and -L.