33 lines
979 B
Plaintext
33 lines
979 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
HOW TO BUILD HARBOUR FROM THE SOURCE
|
|
------------------------------------
|
|
|
|
You'll need these:
|
|
- Flex
|
|
- Bison 1.28 or upper (set BISON_SIMPLE envvar to point to bison.simple)
|
|
- A supported (check MAKE_GNU.BAT for a list) C compiler
|
|
(with all the envvars set (PATH, LIB, INCLUDE, etc...))
|
|
- GNU-make if you want to use it with some other C compiler than GCC
|
|
(as GCC already comes with GNU-make)
|
|
- Harbour source
|
|
- Around 10-15MB of free disk space for each separate platform/compiler
|
|
combinations.
|
|
|
|
To build Harbour using GNU-make:
|
|
- Set the required two envvars (check MAKE_GNU.* for them)
|
|
- Run MAKE_GNU.*
|
|
To build Harbour using non-GNU make with BCC 3.1:
|
|
- Run MAKE_B16.BAT
|
|
To build Harbour using non-GNU make with BCC 4.x, 5.x:
|
|
- MAKE_B32.BAT
|
|
To build Harbour using non-GNU make with MSVC:
|
|
- MAKE_VC.BAT
|
|
|
|
To build a final executable, see above, but use BIN/BLD*.*
|
|
instead of MAKE*.*
|
|
|
|
Viktor Szakats <viktor.szakats@syenar.hu>
|