[cairo-commit] src/Makefile.win32
Behdad Esfahbod
behdad at kemper.freedesktop.org
Wed Sep 24 14:11:06 PDT 2008
src/Makefile.win32 | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
New commits:
commit 2fb59b3ebd885e109160326825325be3907ed48e
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Wed Sep 24 17:09:54 2008 -0400
[Makefile.win32] Report which files to install
The win32 build system has no way to install anything, but it has
full knowledge of what needs to be installed (which headers). So
we now report files to be installed at the end of the build.
diff --git a/src/Makefile.win32 b/src/Makefile.win32
index 2698886..9b4b3fb 100644
--- a/src/Makefile.win32
+++ b/src/Makefile.win32
@@ -9,7 +9,6 @@ STATIC_SOURCES = cairo-system.c
OBJECTS = $(patsubst %.c, $(CFG)/%.obj, $(SOURCES))
OBJECTS_STATIC = $(patsubst %cairo-system.obj, %cairo-system-static.obj, $(OBJECTS))
-all: inform $(CFG)/cairo.dll $(CFG)/cairo-static.lib
static: inform $(CFG)/cairo-static.lib
dynamic: inform $(CFG)/cairo.dll
@@ -18,3 +17,11 @@ $(CFG)/cairo.dll: $(OBJECTS)
$(CFG)/cairo-static.lib: $(OBJECTS_STATIC)
lib -NOLOGO -OUT:$@ $(PIXMAN_LIBS) $(OBJECTS_STATIC)
+
+all: inform $(CFG)/cairo.dll $(CFG)/cairo-static.lib
+ @echo "Built successfully!"
+ @echo "You should copy the following files to a proper place now:"
+ @echo ""
+ @echo " src/$(CFG)/cairo.dll"
+ @echo " src/$(CFG)/cairo-static.lib"
+ @for x in $(enabled_cairo_headers); do echo " src/$$x"; done
More information about the cairo-commit
mailing list