mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-24 06:40:19 +01:00
19 lines
293 B
Text
19 lines
293 B
Text
top_srcdir = ../..
|
|
include $(top_srcdir)/build/Makefile.win32.common
|
|
|
|
CFLAGS += -I../../src
|
|
|
|
SOURCES = \
|
|
lpyramid.c \
|
|
pdiff.c \
|
|
$(NULL)
|
|
|
|
OBJECTS = $(subst .c,.obj,$(SOURCES))
|
|
|
|
all: pdiff.lib
|
|
|
|
pdiff.lib: $(OBJECTS)
|
|
lib -NOLOGO -OUT:$@ $(OBJECTS)
|
|
|
|
%.obj: %.c
|
|
@$(CC) $(CFLAGS) -c -Fo"$@" $<
|