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