]>
Commit | Line | Data |
---|---|---|
ddf98968 VS |
1 | <?xml version="1.0" ?> |
2 | <makefile> | |
3 | ||
4 | <if cond="FORMAT=='autoconf'"> | |
5 | <option name="wxUSE_LIBJPEG"/> | |
6 | </if> | |
7 | <if cond="FORMAT!='autoconf'"> | |
8 | <set var="wxUSE_LIBJPEG">builtin</set> | |
9 | </if> | |
10 | <set var="LIB_JPEG"> | |
11 | <if cond="wxUSE_LIBJPEG=='builtin'">wxjpeg</if> | |
12 | </set> | |
332cc656 VS |
13 | <set var="INC_JPEG"> |
14 | <if cond="wxUSE_LIBJPEG=='builtin'">$(SRCDIR)/src/jpeg</if> | |
15 | </set> | |
ddf98968 | 16 | |
332cc656 VS |
17 | <lib id="wxjpeg" template="anylib" |
18 | cond="wxUSE_LIBJPEG=='builtin' and BUILDING_LIB=='1'"> | |
ddf98968 VS |
19 | <dirname>$(LIBDIRNAME)</dirname> |
20 | <sources> | |
21 | src/jpeg/jcomapi.c | |
22 | src/jpeg/jutils.c | |
23 | src/jpeg/jerror.c | |
24 | src/jpeg/jmemmgr.c | |
25 | src/jpeg/jmemnobs.c | |
26 | src/jpeg/jcapimin.c | |
27 | src/jpeg/jcapistd.c | |
28 | src/jpeg/jctrans.c | |
29 | src/jpeg/jcparam.c | |
30 | src/jpeg/jdatadst.c | |
31 | src/jpeg/jcinit.c | |
32 | src/jpeg/jcmaster.c | |
33 | src/jpeg/jcmarker.c | |
34 | src/jpeg/jcmainct.c | |
35 | src/jpeg/jcprepct.c | |
36 | src/jpeg/jccoefct.c | |
37 | src/jpeg/jccolor.c | |
38 | src/jpeg/jcsample.c | |
39 | src/jpeg/jchuff.c | |
40 | src/jpeg/jcphuff.c | |
41 | src/jpeg/jcdctmgr.c | |
42 | src/jpeg/jfdctfst.c | |
43 | src/jpeg/jfdctflt.c | |
44 | src/jpeg/jfdctint.c | |
45 | src/jpeg/jdapimin.c | |
46 | src/jpeg/jdapistd.c | |
47 | src/jpeg/jdtrans.c | |
48 | src/jpeg/jdatasrc.c | |
49 | src/jpeg/jdmaster.c | |
50 | src/jpeg/jdinput.c | |
51 | src/jpeg/jdmarker.c | |
52 | src/jpeg/jdhuff.c | |
53 | src/jpeg/jdphuff.c | |
54 | src/jpeg/jdmainct.c | |
55 | src/jpeg/jdcoefct.c | |
56 | src/jpeg/jdpostct.c | |
57 | src/jpeg/jddctmgr.c | |
58 | src/jpeg/jidctfst.c | |
59 | src/jpeg/jidctflt.c | |
60 | src/jpeg/jidctint.c | |
61 | src/jpeg/jidctred.c | |
62 | src/jpeg/jdsample.c | |
63 | src/jpeg/jdcolor.c | |
64 | src/jpeg/jquant1.c | |
65 | src/jpeg/jquant2.c | |
66 | src/jpeg/jdmerge.c | |
67 | </sources> | |
68 | </lib> | |
69 | ||
70 | </makefile> |