blob: 848f4e000b732402b3eddb5f814a45b08aa7885b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# --------------------------------------------------------------------------
#
# 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) fitz ] ;
HDRS += [ FDirName $(TOP) mupdf ] ;
HDRS += [ FDirName $(TOP) apps ] ;
SubInclude TOP fitz ;
SubInclude TOP fitzdraw ;
SubInclude TOP mupdf ;
SubInclude TOP apps ;
|