~ubuntu-branches/ubuntu/saucy/pixman/saucy-security

« back to all changes in this revision

Viewing changes to pixman/Makefile.win32

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2009-09-28 18:12:47 UTC
  • mfrom: (1.1.8 upstream) (2.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090928181247-3iehog63i50htejf
Tags: 0.16.2-1
* New upstream release (closes: #546849).
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
CFLAGS += -O2
30
30
endif
31
31
 
32
 
SOURCES = \
33
 
        pixman-image.c                                  \
34
 
        pixman-access.c                                 \
35
 
        pixman-access-accessors.c                       \
 
32
SOURCES =                               \
 
33
        pixman-image.c                  \
 
34
        pixman-access.c                 \
 
35
        pixman-access-accessors.c       \
36
36
        pixman-region16.c               \
37
37
        pixman-region32.c               \
38
 
        pixman-compose.c                                \
39
 
        pixman-compose-accessors.c      \
40
 
        pixman-combine32.c                              \
41
 
        pixman-combine64.c                              \
42
 
        pixman-pict.c                                   \
43
 
        pixman-source.c                                 \
44
 
        pixman-transformed.c                            \
45
 
        pixman-transformed-accessors.c                  \
46
 
        pixman-utils.c                                  \
47
 
        pixman-edge.c                                   \
 
38
        pixman-combine32.c              \
 
39
        pixman-combine64.c              \
 
40
        pixman-utils.c                  \
 
41
        pixman-edge.c                   \
48
42
        pixman-edge-accessors.c         \
49
 
        pixman-trap.c                                   \
50
 
        pixman-compute-region.c         \
51
 
        pixman-timer.c                                  \
52
 
        pixman-matrix.c                                 \
 
43
        pixman-trap.c                   \
 
44
        pixman-timer.c                  \
 
45
        pixman-matrix.c                 \
 
46
        pixman-gradient-walker.c        \
 
47
        pixman-linear-gradient.c        \
 
48
        pixman-radial-gradient.c        \
 
49
        pixman-bits-image.c             \
 
50
        pixman.c                        \
 
51
        pixman-cpu.c                    \
 
52
        pixman-fast-path.c              \
 
53
        pixman-implementation.c         \
 
54
        pixman-solid-fill.c             \
 
55
        pixman-general.c                \
53
56
        $(NULL)
54
57
 
55
58
# MMX compilation flags
125
128
$(CFG_VAR)/$(LIBRARY).lib: $(OBJECTS)
126
129
        lib -NOLOGO -OUT:$@ $(OBJECTS) || exit 0
127
130
 
128
 
pixman-combine32.c: combine.inc pixman-combine32.h combine.pl
129
 
        perl ./combine.pl 8 < $< > $@ || ($(RM) $@; exit 1)
130
 
pixman-combine32.h: combine.h.inc combine.pl
131
 
        perl ./combine.pl 8 < $< > $@ || ($(RM) $@; exit 1)
 
131
pixman-combine32.c: pixman-combine.c.template pixman-combine32.h make-combine.pl
 
132
        perl ./make-combine.pl 8 < $< > $@ || ($(RM) $@; exit 1)
 
133
pixman-combine32.h: pixman-combine.h.template make-combine.pl
 
134
        perl ./make-combine.pl 8 < $< > $@ || ($(RM) $@; exit 1)
132
135
 
133
 
pixman-combine64.c: combine.inc pixman-combine64.h combine.pl
134
 
        perl ./combine.pl 16 < $< > $@ || ($(RM) $@; exit 1)
135
 
pixman-combine64.h: combine.h.inc combine.pl
136
 
        perl ./combine.pl 16 < $< > $@ || ($(RM) $@; exit 1)
 
136
pixman-combine64.c: pixman-combine.c.template pixman-combine64.h make-combine.pl
 
137
        perl ./make-combine.pl 16 < $< > $@ || ($(RM) $@; exit 1)
 
138
pixman-combine64.h: pixman-combine.h.template make-combine.pl
 
139
        perl ./make-combine.pl 16 < $< > $@ || ($(RM) $@; exit 1)
137
140
 
138
141
clean_r:
139
142
        @rm -f $(CFG_VAR)/*.obj $(CFG_VAR)/*.lib $(CFG_VAR)/*.pdb $(CFG)/*.ilk || exit 0
140
 
        @rm -f $(CFG)/*.obj $(CFG)/*.lib $(CFG)/*.pdb $(CFG)/*.ilk pixman-combine32.c pixman-combine64.c || exit 0
 
143
        @rm -f $(CFG)/*.obj $(CFG)/*.lib $(CFG)/*.pdb $(CFG)/*.ilk pixman-combine32.c pixman-combine64.c pixman-combine64.c pixman-combine64.h || exit 0