Difference between revisions of "UnixCompile"

From VideoLAN Wiki
Jump to navigation Jump to search
(just improved)
(forgot about the wiki-syntax, now it looks better)
Line 1: Line 1:
Download source code and extract the archive
+
Download source code and extract the archive and go into your VLC directory
 +
<code>
 +
cd /path/to/your/vlc/folder/
  
cd /your/vlc/folder
+
./configure
 +
If you want to install VLC into another directory, run
 +
# ./configure --prefix=/path/to/install/folder/
 +
Compile VLC:
 +
make
  
./configure
+
As root:
# If you want to install VLC into another directory, run
+
make install
# ./configure --prefix=/path/to/install/folder/
 
# instead
 
  
make
+
(not necessary):
 
+
make clean
# As root:
+
</code>
make install
 
 
 
# (not necessary):
 
# make clean
 

Revision as of 17:51, 24 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