Difference between revisions of "UnixCompile"

From VideoLAN Wiki
Jump to navigation Jump to search
(just improved)
Line 1: Line 1:
Download source code...
+
Download source code and extract the archive
  
 +
cd /your/vlc/folder
  
run this command
+
./configure
 +
# If you want to install VLC into another directory, run
 +
# ./configure --prefix=/path/to/install/folder/
 +
# instead
  
 +
make
  
./configure && make && make install && make clean
+
# As root:
 +
make install
  
 
+
# (not necessary):
simple isn't it :)
+
# make clean
 
 
 
 
if wrong please fix
 

Revision as of 17:43, 24 June 2006

Download source code and extract the archive

cd /your/vlc/folder

./configure

  1. If you want to install VLC into another directory, run
  2. ./configure --prefix=/path/to/install/folder/
  3. instead

make

  1. As root:

make install

  1. (not necessary):
  2. make clean