mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-20 02:18:08 +02:00
This patch adds cairo_surface_copy_page and cairo_surface_show_page as public methods, leaving the previous cairo_show_page variants as shorthands. copy_page/show_page are specific to the surface, not to the context, so they need to be surface methods.
23 lines
344 B
Text
23 lines
344 B
Text
|
|
SUBMAKEFILE = 1
|
|
|
|
include ../Makefile.win32
|
|
|
|
CFLAGS += -I../src
|
|
|
|
SOURCES = \
|
|
cairo-boilerplate.c \
|
|
cairo-boilerplate-win32.c \
|
|
cairo-boilerplate-ps.c \
|
|
cairo-boilerplate-svg.c \
|
|
cairo-boilerplate-pdf.c \
|
|
xmalloc.c \
|
|
$(NULL)
|
|
|
|
OBJECTS = $(subst .c,.obj,$(SOURCES))
|
|
|
|
all: boiler.lib
|
|
|
|
boiler.lib: $(OBJECTS)
|
|
lib -NOLOGO -OUT:$@ $(OBJECTS)
|
|
|