Add definitions of INT64_MIN and INT64_MAX
[profile/ivi/pixman.git] / pixman / Makefile.sources
1 libpixman_sources =                     \
2         pixman.c                        \
3         pixman-access.c                 \
4         pixman-access-accessors.c       \
5         pixman-bits-image.c             \
6         pixman-combine32.c              \
7         pixman-combine64.c              \
8         pixman-conical-gradient.c       \
9         pixman-cpu.c                    \
10         pixman-edge.c                   \
11         pixman-edge-accessors.c         \
12         pixman-fast-path.c              \
13         pixman-general.c                \
14         pixman-gradient-walker.c        \
15         pixman-image.c                  \
16         pixman-implementation.c         \
17         pixman-linear-gradient.c        \
18         pixman-matrix.c                 \
19         pixman-noop.c                   \
20         pixman-radial-gradient.c        \
21         pixman-region16.c               \
22         pixman-region32.c               \
23         pixman-solid-fill.c             \
24         pixman-timer.c                  \
25         pixman-trap.c                   \
26         pixman-utils.c                  \
27         $(NULL)
28
29 libpixman_headers =                     \
30         pixman.h                        \
31         pixman-accessor.h               \
32         pixman-combine32.h              \
33         pixman-combine64.h              \
34         pixman-compiler.h               \
35         pixman-edge-imp.h               \
36         pixman-inlines.h                \
37         pixman-private.h                \
38         $(NULL)
39
40 BUILT_SOURCES =                         \
41         pixman-combine32.c              \
42         pixman-combine32.h              \
43         pixman-combine64.c              \
44         pixman-combine64.h              \
45         $(NULL)
46
47 pixman-combine32.c: pixman-combine.c.template make-combine.pl
48         $(PERL) $(lastword $+) 8 < $< > $@ || ($(RM) $@; exit 1)
49 pixman-combine32.h: pixman-combine.h.template make-combine.pl
50         $(PERL) $(lastword $+) 8 < $< > $@ || ($(RM) $@; exit 1)
51
52 pixman-combine64.c: pixman-combine.c.template make-combine.pl
53         $(PERL) $(lastword $+) 16 < $< > $@ || ($(RM) $@; exit 1)
54 pixman-combine64.h: pixman-combine.h.template make-combine.pl
55         $(PERL) $(lastword $+) 16 < $< > $@ || ($(RM) $@; exit 1)