mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-03 03:07:58 +02:00
[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:
parent
6eee90784e
commit
2fb59b3ebd
1 changed files with 8 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue