cairo/boilerplate/Makefile.win32
Vladimir Vukicevic 9e975757a2 Export cairo_surface_{copy,show}_page
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.
2007-09-11 13:30:35 -07:00

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)