NASM 0.98.30
[platform/upstream/nasm.git] / INSTALL
1
2 Installing nasm from source
3 ===========================
4
5 Installing nasm is pretty straightforward on UN*X systems with GNU tools installed.
6
7 If you checked out source from CVS you will need to run autoconf to generate configure,
8 otherwise you don't have to.
9
10 $ autoconf
11
12 Then run configure to detect your platform settings and generate makefiles.
13
14 $ ./configure
15
16 You can get information about available configuration options by running `./configure --help`.
17
18 If configure fails, please send bug report with detailed platform information to
19 <nasm-bugs@lists.sourceforge.net> and we will try to help you asap!
20
21 If everything went okay, type
22
23 $ make
24
25 to build nasm, ndisasm and rdoff tools
26 or
27
28 $ make everything
29
30 to build the former plus the docs.
31
32 You can decrease the size of produces executables by stripping off unnecessary information, to
33 achieve this run
34
35 $ make strip
36
37 If you install to a system-wide location you might need to become root:
38 $ su
39 <enter root password>
40
41 then
42
43 $ make install
44
45 optionally followed by 
46
47 $ make install_rdf
48
49 Or you can 
50
51 $ make install_everything
52
53 to install everything =)
54
55
56 Thats it, enjoy!
57
58 PS. Installation instructions for other platforms are underway.
59