X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=inline;f=gtk2%2FMakefile;fp=gtk2%2FMakefile;h=0000000000000000000000000000000000000000;hb=b33ce6db6da2cfdc1289de889d926c8552acb713;hp=7f042893682d0fab968312c3c145a4aee59e91c8;hpb=f797086f7bd7958e8679b42fb7de44ffe9f82de6;p=fedora-mingw.git diff --git a/gtk2/Makefile b/gtk2/Makefile deleted file mode 100644 index 7f04289..0000000 --- a/gtk2/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# Build some 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: test1 test1.exe test2 test2.exe test3 test3.exe - -test1: test1.c - gcc $(CFLAGS) $< $(LIBS) -o $@ - -test1.exe: test1.c - export PKG_CONFIG_PATH=$(MINGW32_LIBDIR)/pkgconfig; \ - i686-pc-mingw32-gcc $(CFLAGS) $< $(LIBS) -o $@ - -test2: test2.c - gcc $(CFLAGS) $< $(LIBS) -o $@ - -test2.exe: test2.c - export PKG_CONFIG_PATH=$(MINGW32_LIBDIR)/pkgconfig; \ - i686-pc-mingw32-gcc $(CFLAGS) $< $(LIBS) -o $@ - -test3: test3.c - gcc $(CFLAGS) $< $(LIBS) -o $@ - -test3.exe: test3.c - export PKG_CONFIG_PATH=$(MINGW32_LIBDIR)/pkgconfig; \ - i686-pc-mingw32-gcc $(CFLAGS) $< $(LIBS) -o $@ - -clean: - rm -f test1 test2 test3 *.exe *~