mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-04-25 14:20:37 +02:00
23 lines
436 B
Text
23 lines
436 B
Text
top_srcdir = ..
|
|
include $(top_srcdir)/build/Makefile.win32.common
|
|
include Makefile.win32.features
|
|
|
|
CFLAGS += -I../src
|
|
|
|
HEADERS = \
|
|
$(enabled_cairo_boilerplate_headers) \
|
|
$(enabled_cairo_boilerplate_private) \
|
|
$(NULL)
|
|
|
|
SOURCES = \
|
|
$(enabled_cairo_boilerplate_sources) \
|
|
$(NULL)
|
|
|
|
OBJECTS = $(patsubst %.c, $(CFG)/%.obj, $(SOURCES))
|
|
|
|
|
|
all: $(CFG)/boiler.lib
|
|
|
|
|
|
$(CFG)/boiler.lib: $(OBJECTS)
|
|
lib -NOLOGO -OUT:$@ $(OBJECTS) $(WIN_LIBS)
|