With this makefile, it's possible to comfortably compile both rss.exe and finish.exe on a recent Fedora box with the mingw packages installed. This is a nice convenience and saves people of memorizing the compiler command lines. Signed-off-by: Lucas Meneghel Rodrigues <lmr@xxxxxxxxxx> --- client/tests/kvm/deps/Makefile | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) create mode 100644 client/tests/kvm/deps/Makefile diff --git a/client/tests/kvm/deps/Makefile b/client/tests/kvm/deps/Makefile new file mode 100644 index 0000000..ba978c4 --- /dev/null +++ b/client/tests/kvm/deps/Makefile @@ -0,0 +1,8 @@ +all: + make rss.exe finish.exe +rss.exe: + i686-pc-mingw32-g++ rss.cpp -lws2_32 -lshlwapi -mwindows -o rss.exe +finish.exe: + i686-pc-mingw32-g++ finish.cpp -lws2_32 -o finish.exe +clean: + rm -rf *.exe -- 1.7.0.1 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html