summaryrefslogtreecommitdiff
path: root/src/Makefile.win32
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-09-24 17:09:54 -0400
committerBehdad Esfahbod <behdad@behdad.org>2008-09-24 17:09:54 -0400
commit2fb59b3ebd885e109160326825325be3907ed48e (patch)
tree6d50ba891940c951efbb3416ae0ad3c912fbb605 /src/Makefile.win32
parent6eee90784ea8174b346e389c2f61b599543685e4 (diff)
[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.
Diffstat (limited to 'src/Makefile.win32')
-rw-r--r--src/Makefile.win329
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Makefile.win32 b/src/Makefile.win32
index 26988869..9b4b3fb4 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