File: README

package info (click to toggle)
ftjam 2.5.2-1.1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, lenny, squeeze, stretch, wheezy
  • size: 1,216 kB
  • ctags: 1,237
  • sloc: ansic: 7,226; sh: 2,751; yacc: 443; makefile: 121
file content (102 lines) | stat: -rwxr-xr-x 2,984 bytes parent folder | download | duplicates (2)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
=============================================================================

This if "FT-Jam", a simple derivative of the Jam build tool, based and
100% compatible with Jam 2.5. See http://www.freetype.org/jam/ for more
details.

This is a non-official release of FT-Jam, dubbed 2.5.1 at the moment.

Note that you'll find the original Jam README in the file README.ORG



Installation on Unix (and Cygwin):
----------------------------------

Unlike Classic Jam, this release can be installed with traditionnal Unix
commands, i.e.:

  ./configure <options>
  make
  make install    (may need to be root)

at the moment, only the 'jam' executable is installed in $prefix/bin.
we'll try to install the documentation and convert it to manpages later,
if time permits.

If the './configure' command doesn't work, do the following, you might
have a working source release that wasn't packaged for distribution. You
can get it to install normally doing the following:

  chmod +x configure
  chmod +x yyacc
  cd builds/unix
  autoconf
  cd ../..
  
then

  ./configure <options>
  make
  make install


Installation on Win32:
----------------------

We provide a few build scripts for various compilers on Win32. In all cases,
this will generate an executable named 'jam.exe' within the bin.ntx86
directory:

  Visual C++:        
    set JAM_TOOLSET=VISUALC
    nmake -f builds\win32-visualc.mk
  
  Borland C++:       
    set JAM_TOOLSET=BORLANDC
    make -fbuilds\win32-borlandc.mk
  
  Mingw:             
    set JAM_TOOLSET=MINGW
    make -f builds/win32-gcc.mk

  Digital Mars:
    set JAM_TOOLSET=DIGITALMARS
    make -f builds\win32-dmars.mk

  Cygwin:
    make -f builds/win32-cygwin.mk


Copy the executable to your path.

==============================================================================
IMPORTANT FOR CYGWIN AND MINGW USERS:
Note that the Mingw and Cygwin builds produce different executables !!
the first one will only work correctly on the Windows command line, while
the second one will only work on a Unix shell (e.g. Bash).
===============================================================================


Installation with Jam or FT-Jam:
--------------------------------

If you already have a previous version of Jam or FT-Jam in your path, simply
invoke it from the root directory. This will generate the 'jam' or 'jam.exe'
executable in a directory named 'bin.<system>', where '<system>' depends
on your platform, e.g.  bin.linuxx86, bin.ntx86, etc...


Differences with Classic Jam:
-----------------------------

Sorry, there is no official documentation at the moment. You can however
parse the 'Jambase' file, since documentation comments have been added to
all important rules.


Troubleshooting:
----------------

Please report problems to the Jam mailing list (jamming@perforce.com).
We'll try to create a FT-Jam specific list in the future.