mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-25 00:10:10 +01:00
The performance tools build system for Win32 hasn't been maintained for some time. The makefiles are now structured as in other directories (Makefile.sources used by both Makefile.am and Makefile.win32) and some additional code hides os-specific parts.
12 lines
392 B
Text
12 lines
392 B
Text
top_srcdir = ../..
|
|
include $(top_srcdir)/build/Makefile.win32.common
|
|
include $(top_srcdir)/perf/micro/Makefile.sources
|
|
|
|
CFLAGS += -I$(top_srcdir)/perf -I$(top_srcdir)/boilerplate/
|
|
|
|
OBJECTS = $(patsubst %.c, $(CFG)/%-static.obj, $(libcairo_perf_micro_sources))
|
|
|
|
all: inform $(CFG)/libcairo-perf-micro.lib
|
|
|
|
$(CFG)/libcairo-perf-micro.lib: $(OBJECTS)
|
|
@$(AR) $(CAIRO_ARFLAGS) -OUT:$@ $(OBJECTS)
|