summaryrefslogtreecommitdiffstats
path: root/BUILD
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2007-04-16 17:17:36 +0000
committerjbrjake <[email protected]>2007-04-16 17:17:36 +0000
commit5ed496ef19a95b56b1236fce2b78d2c9a8a4767f (patch)
treef6fdedba613f42aa1069916a8b49bdd4275caeb7 /BUILD
parent3dc51cc9059481c110e0db2e7dd0eb31586c04f1 (diff)
Re-organized so make is the preferred build method, standardized some text layout stuff, and removed a stray reference to libmediafork.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@515 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD86
1 files changed, 40 insertions, 46 deletions
diff --git a/BUILD b/BUILD
index 3ca4dd303..6e2e41b14 100644
--- a/BUILD
+++ b/BUILD
@@ -2,28 +2,16 @@ $Id: BUILD,v 1.11 2005/10/23 01:35:59 titer Exp $
BUILD file for HandBrake <http://handbrake.m0k.org/>
-Building HandBrake with jam
-===========================
-
-You can build HandBrake on BeOS, MacOS X, Linux, and on Windows using Cygwin.
-If you'd like to port it to another OS, email me ([email protected]).
+Building HandBrake with make
+=============================
Step 1: get needed tools
-========================
+==============
+ gcc and g++
There are usually included in your OS' dev tools. On BeOS/Zeta, the
default gcc isn't enough, gcc 2.95.3 is required.
-+ jam
- I use 2.5rc3, earlier versions might cause issues.
- On BeOS, you can download it at <http://www.haiku-os.org/develop.php>.
- On OS X, you cannot use the modified jam shipped with the developer
- tools, use this one instead:
- <http://download.m0k.org/handbrake/jam-2.5rc3-OSX.zip>.
- On Cygwin, get the jam source from
- http://public.perforce.com/public/jam/index.html,
- compile it with gcc in Cygwin, and put the jam executable somewhere on
- your path.
+
+ nasm (Only for x86. On Mac OS X Intel, Xcode 2.4.1 include it)
Cygwin setup:
@@ -38,25 +26,49 @@ Cygwin setup:
to try building it with MinGW. If you want to try making it work with
MinGW, then go for it!
+Step 2: configuration
+==============
-Step 2: build
-=============
+The HB_BUILD and HB_VERSION are defined in a single file, the Makefile correct the values in Xcode too.
-Run `./configure && jam'. This will build every library HandBrake
-requires, then HandBrake itself.
+The file where the informations are stored is Makefile.config
+
+Step 3: build
+==============
+
+Run `make'. This will build libhb, Handbrake and HandBrakeCLI as Universal Binary.
+This build method use precompiled contrib libraries. Script to build those binaries are provided too.
+All the build is handled by Xcode 2.4.1, should work on powerPC and Intel Macs.
+
+# To build under Cygwin simply use the command:
+make HandbrakeCLI
+
+This will download pre-compiled libaries and build the handbrake source.
-----------------------------------------------------------------------------------------------------
-Building HandBrake with make
-============================
+Building HandBrake with jam
+=============================
+
+You can build HandBrake on BeOS, MacOS X, Linux, and on Windows using Cygwin.
+If you'd like to port it to another OS, email me ([email protected]).
Step 1: get needed tools
-========================
+==============
+ gcc and g++
There are usually included in your OS' dev tools. On BeOS/Zeta, the
default gcc isn't enough, gcc 2.95.3 is required.
-
++ jam
+ I use 2.5rc3, earlier versions might cause issues.
+ On BeOS, you can download it at <http://www.haiku-os.org/develop.php>.
+ On OS X, you cannot use the modified jam shipped with the developer
+ tools, use this one instead:
+ <http://download.m0k.org/handbrake/jam-2.5rc3-OSX.zip>.
+ On Cygwin, get the jam source from
+ http://public.perforce.com/public/jam/index.html,
+ compile it with gcc in Cygwin, and put the jam executable somewhere on
+ your path.
+ nasm (Only for x86. On Mac OS X Intel, Xcode 2.4.1 include it)
Cygwin setup:
@@ -71,26 +83,8 @@ Cygwin setup:
to try building it with MinGW. If you want to try making it work with
MinGW, then go for it!
+Step 2: build
+==============
-
-
-Step 2: configuration
-=====================
-
-The HB_BUILD and HB_VERSION are defined in a single file, the Makefile correct the values in Xcode too.
-
-The file where the informations are stored is Makefile.config
-
-Step 3: build
-=============
-
-Run `make'. This will build libmediafork, Handbrake and HandBrakeCLI as Universal Binary.
-This build method use precompiled contrib libraries. Script to build those binaries are provided too.
-All the build is handled by Xcode 2.4.1, should work on powerPC and Intel Macs.
-
-# To build under Cygwin simply use the command:
-make HandbrakeCLI
-
-This will download pre-compiled libaries and build the handbrake source.
-
-
+Run `./configure && jam'. This will build every library HandBrake
+requires, then HandBrake itself.