~peter-pearse/ubuntu/natty/pixman/prop001

« back to all changes in this revision

Viewing changes to pixman/Makefile.win32

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2007-11-25 00:41:31 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071125004131-7qre336ftz7eb95l
Tags: 0.9.6-1
* New upstream release (closes: #452734).
  + 02_no-sse.diff: remove, fix included upstream;
  + 03_fbFetchTransformed_64bit_fix.diff: remove, 64bit issues should be
    fixed too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
LIBRARY = pixman-1
 
2
 
 
3
CC = cl
 
4
LINK = link
 
5
 
 
6
CFLAGS = -MD -Zi -nologo -O2 -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -I../pixman/src -I. -DPACKAGE=$(LIBRARY) -DPACKAGE_VERSION="" -DPACKAGE_BUGREPORT=""
 
7
 
 
8
SOURCES = \
 
9
        pixman-region.c         \
 
10
        pixman-image.c          \
 
11
        pixman-compose.c        \
 
12
        pixman-compose-accessors.c      \
 
13
        pixman-pict.c           \
 
14
        pixman-utils.c          \
 
15
        pixman-edge.c           \
 
16
        pixman-edge-accessors.c         \
 
17
        pixman-trap.c           \
 
18
        pixman-compute-region.c \
 
19
        pixman-timer.c          \
 
20
        $(NULL)
 
21
 
 
22
OBJECTS = $(subst .c,.obj,$(SOURCES))
 
23
 
 
24
%.obj: %.c
 
25
        @$(CC) -c $(CFLAGS) -Fo"$@" $<
 
26
 
 
27
$(LIBRARY).lib: $(OBJECTS)
 
28
        lib -NOLOGO -OUT:$@ $(OBJECTS)
 
29
 
 
30
clean:
 
31
        @rm -f *.obj *.lib *.pdb *.ilk || exit 0