UnixCompile

From VideoLAN Wiki
Revision as of 23:46, 27 June 2006 by H2g2bob (talk | contribs)
Jump to navigation Jump to search

Download source code and extract the archive and go into your VLC directory

cd /path/to/your/vlc/folder/

As with most compilations, you need to run ./configure to get information about your computer, so it can be compiled correctly.

./configure

If you want to install VLC into another directory, run

./configure --prefix=/path/to/install/folder/

Compile VLC:

make

As root (type "su" to change to root account):

make install

To remove files created during the compile (optional) type:

make clean