-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.TXT
58 lines (41 loc) · 1.54 KB
/
README.TXT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---------------------------------------------------------------------
This is the source code for bbLean
Copyright © 2004-2009 grischka
http://bb4win.sourceforge.net/bblean
http://developer.berlios.de/projects/bblean
bbLean is free software, released under the GNU General Public
License (GPL version 2). For details see:
http://www.fsf.org/licenses/gpl.html
This software is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for details.
---------------------------------------------------------------------
Prerequisites:
- A compiler (MinGW or MSC)
- GNU make from MinGW
Make:
Change into the source directory and type:
make COMPILER=xxx
where xxx is one of:
gcc for MinGW (default)
msc for MSVC 6.0
vc8 for MS VC8 Express
msc64 for MS AMD64 compiler
gcc64 for MinGW-w64 compiler
Some options in the build/makefile-xxx.inc files might need
tweaking (e.g. for compiler installation paths).
Clean:
make clean
Install into the source tree
make COMPILER=xxx INSTDIR=.
Install into directory elsewhere
make COMPILER=xxx INSTDIR=<directory>
Tested (among others) with MinGW package versions:
gcc/g++ 3.4.5
binutils 2.18.50
mingw-runtime 3.15.1
w32api 3.12
make 3.81
2009-05-20
--- grischka