cairo, glib2 and libxml2 have been imported into Fedora.
[fedora-mingw.git] / cairo / Makefile
diff --git a/cairo/Makefile b/cairo/Makefile
deleted file mode 100644 (file)
index e4ac55c..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-# Build some Cairo/Gtk test programs under Wine.
-
-CFLAGS = -g `pkg-config --cflags gtk+-2.0`
-LIBS   = `pkg-config --libs gtk+-2.0`
-
-MINGW32_LIBDIR=/usr/i686-pc-mingw32/sys-root/mingw/lib
-
-all: svgspacewar svgspacewar.exe
-
-svgspacewar: svgspacewar.c
-       gcc $(CFLAGS) $< $(LIBS) -o $@
-
-svgspacewar.exe: svgspacewar.c
-       export PKG_CONFIG_PATH=$(MINGW32_LIBDIR)/pkgconfig; \
-       i686-pc-mingw32-gcc $(CFLAGS) $< $(LIBS) -o $@
-
-clean:
-       rm -f svgspacewar svgspacewar.exe *~