Difference between revisions of "UnixCompile"

From VideoLAN Wiki
Jump to navigation Jump to search
(forgot about the wiki-syntax, now it looks better)
m (minor fix)
Line 5: Line 5:
 
  ./configure
 
  ./configure
 
If you want to install VLC into another directory, run
 
If you want to install VLC into another directory, run
  # ./configure --prefix=/path/to/install/folder/
+
  ./configure --prefix=/path/to/install/folder/
 
Compile VLC:
 
Compile VLC:
 
  make
 
  make

Revision as of 23:40, 27 June 2006

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

cd /path/to/your/vlc/folder/
./configure

If you want to install VLC into another directory, run

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

Compile VLC:

make

As root:

make install

(not necessary):

make clean