blob: 851379d2a9c9a53fa0f5f2552a0e16b72834d6af (
plain)
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
|
# --------------------------------------------------------------------------
#
# This is the Jamfile used for building Fitz and MuPDF.
# Put paths and other options in Jamrules, not here.
#
# http://public.perforce.com/public/jam/src/Jam.html
#
SubDir TOP ;
HDRS = [ FDirName $(TOP) include ] ;
Main hexdump : hexdump.c ;
Main strdump : strdump.c ;
SubInclude TOP base ;
SubInclude TOP stream ;
SubInclude TOP world ;
SubInclude TOP raster ;
SubInclude TOP fonts ;
SubInclude TOP cmaps ;
SubInclude TOP mupdf ;
SubInclude TOP apps ;
|