summaryrefslogtreecommitdiff
path: root/fitz/Jamfile
blob: 61f2583d1f4e87a25e62187429067e4b2bb8742c (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
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
#
#
#

SubDir TOP fitz ;

#
# The base runtime support, and patching over
# platform specific wonkyness.
#

Library libfitz :
	base_cpudep.c
	base_error.c
	base_hash.c
	base_matrix.c
	base_memory.c
	base_rect.c
	base_rune.c
	base_string.c
	base_cleanname.c
	;

if $(NEED_GETOPT) { Library libfitz : util_getopt.c ; }

# MSVC does not have gettimeofday()
if $(OS) = NT
{
    Library libfitz : util_gettimeofday.c ;
}

#
# Encryption, carousel-object-system, filters, buffers and streams.
#

Library libfitz :

	crypt_arc4.c
	crypt_crc32.c
	crypt_md5.c

	obj_array.c
	obj_dict.c
	obj_parse.c
	obj_print.c
	obj_simple.c

	stm_buffer.c
	stm_filter.c
	stm_open.c
	stm_read.c
	stm_misc.c

	filt_pipeline.c
	filt_arc4.c
	filt_null.c

	filt_a85d.c
	filt_a85e.c
	filt_ahxd.c
	filt_ahxe.c
	filt_dctd.c
	filt_dcte.c
	filt_faxd.c
	filt_faxdtab.c
	filt_faxe.c
	filt_faxetab.c
	filt_flate.c
	filt_lzwd.c
	filt_lzwe.c
	filt_predict.c
	filt_rld.c
	filt_rle.c

	;

if $(HAVE_JASPER)   { Library libfitz : filt_jpxd.c ; }
if $(HAVE_JBIG2DEC) { Library libfitz : filt_jbig2d.c ; }

#
# Resources and display tree.
#

Library libfitz :

	node_toxml.c
	node_misc1.c
	node_misc2.c
	node_optimize.c
	node_path.c
	node_text.c
	node_tree.c

	res_colorspace.c
	res_font.c
	res_image.c
	res_shade.c

	;