[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.
This commit is contained in:
Behdad Esfahbod 2008-09-24 17:09:54 -04:00
parent 6eee90784e
commit 2fb59b3ebd

View file

@ -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