summaryrefslogtreecommitdiff
path: root/test/pdiff
diff options
context:
space:
mode:
authorVladimir Vukicevic <vladimir@pobox.com>2007-08-27 15:29:24 -0700
committerVladimir Vukicevic <vladimir@pobox.com>2007-08-28 10:54:18 -0700
commit19fa097f515e72c195d10ddd64920ec71fa903ec (patch)
treefc9819dca2aaaa2a23702782b02c78717e9eda7b /test/pdiff
parentf4a8633fce5262c09b323eef212fd6efe57d8f10 (diff)
downloadcairo-19fa097f515e72c195d10ddd64920ec71fa903ec.tar.gz
[win32] Update win32 Makefiles
Happy building with msys, one location for CFLAGS/etc changes (toplevel), new pdiff makefile.
Diffstat (limited to 'test/pdiff')
-rw-r--r--test/pdiff/Makefile.win3218
1 files changed, 18 insertions, 0 deletions
diff --git a/test/pdiff/Makefile.win32 b/test/pdiff/Makefile.win32
new file mode 100644
index 000000000..c5d3f6bb0
--- /dev/null
+++ b/test/pdiff/Makefile.win32
@@ -0,0 +1,18 @@
+
+SUBMAKEFILE = 1
+
+include ../../Makefile.win32
+
+CFLAGS += -I../../src
+
+SOURCES = \
+ lpyramid.c \
+ pdiff.c \
+ $(NULL)
+
+OBJECTS = $(subst .c,.obj,$(SOURCES))
+
+all: pdiff.lib
+
+pdiff.lib: $(OBJECTS)
+ lib -NOLOGO -OUT:$@ $(OBJECTS)