[cairo-commit] pixman/src src/Makefile.win32

Carl Worth cworth at kemper.freedesktop.org
Tue Feb 13 16:53:35 PST 2007


 pixman/src/Makefile.win32 |    2 ++
 src/Makefile.win32        |    8 ++++++--
 2 files changed, 8 insertions(+), 2 deletions(-)

New commits:
diff-tree 01a133167c48e7985515ae29f4a87de7952d1373 (from b8987dd12c3269c1d7978338cd356b9fe3ad420e)
Author: Dan Amelang <dan at amelang.net>
Date:   Sun Feb 11 00:16:52 2007 -0800

    Update Win32 makefiles
    
    Since the last time these makefiles were last updated some new source
    files have been added and one renamed. In addition, a "clean" rule
    needed to be added to the pixman makefile. And the "clean" rule in the
    main cairo makefile wasn't working properly for me.

diff --git a/pixman/src/Makefile.win32 b/pixman/src/Makefile.win32
index 7fda0bb..fcbe53b 100644
--- a/pixman/src/Makefile.win32
+++ b/pixman/src/Makefile.win32
@@ -33,3 +33,5 @@ all: pixman.lib
 pixman.lib: $(OBJECTS)
 	lib /NOLOGO /OUT:$@ $(OBJECTS)
 
+clean:
+	@rm -f *.obj *.lib *.pdb || exit 0
diff --git a/src/Makefile.win32 b/src/Makefile.win32
index 27d17d0..6499c6e 100644
--- a/src/Makefile.win32
+++ b/src/Makefile.win32
@@ -9,13 +9,16 @@ srcdir = `pwd`
 SOURCES = \
 	cairo-arc.c \
 	cairo-array.c \
+	cairo-bentley-ottmann.c \
 	cairo-cache.c \
 	cairo-clip.c \
 	cairo-color.c \
 	cairo-debug.c \
+	cairo-deflate-stream.c \
 	cairo-fixed.c \
 	cairo-font-options.c \
 	cairo-font.c \
+	cairo-freelist.c \
 	cairo-gstate.c \
 	cairo-hash.c \
 	cairo-hull.c \
@@ -26,7 +29,7 @@ SOURCES = \
 	cairo-output-stream.c \
 	cairo-operator.c \
 	cairo-path-bounds.c \
-	cairo-path-data.c \
+	cairo-path-fixed.c \
 	cairo-path-fill.c \
 	cairo-path-stroke.c \
 	cairo-path.c \
@@ -37,6 +40,7 @@ SOURCES = \
 	cairo-rectangle.c \
 	cairo-region.c \
 	cairo-scaled-font.c \
+	cairo-skiplist.c \
 	cairo-slope.c \
 	cairo-spline.c \
 	cairo-stroke-style.c \
@@ -105,4 +109,4 @@ cairo-static.lib: $(OBJECTS) $(STATIC_OB
 
 
 clean:
-	@rm -f *.obj || rm -f *.dll || rm -f *.lib || rm -f *.exe || rm -f *.exe.manifest || rm -f *.pdb || rm -f *.ilk || exit 0
+	@rm -f *.obj *.dll *.lib *.pdb *.ilk || exit 0


More information about the cairo-commit mailing list