Change command line options:
[tatoo.git] / HACKING
1 Building instructions
2 ---------------------
3
4 Optionaly run autoconf, if the configure script is absent
5 or not up to date (only necessary if configure.in was
6 modified)
7
8 $ autoconf
9
10 Run the configure script:
11
12 $ ./configure [options]
13
14 See "./configure --help" for the list of available options.
15 Build the main binary:
16
17 $ ./remake src/tatoo.native
18
19 or
20
21 $ ./remake src/tatoo.byte
22
23 to build either in native code or bytecode.
24
25
26