I started looking QEMU source code recently and I saw that Makefile was missing a "uninstall" profile, that enables user to remove all files installed when using "make install". I don't know if this list is the proper way of sending patches but I'm assuming it is (I subscribed on it today).
BR,
--
Bruno de Oliveira Abinader
10LE/INdT
--- Makefile 2006-03-26 15:38:08.000000000 -0400
+++ Makefile.new 2006-03-26 15:36:50.000000000 -0400
@@ -64,6 +64,11 @@
$(MAKE) -C $$d $@ || exit 1 ; \
done
+uninstall: clean
+ rm -f "$(bindir)/*qemu*"
+ rm -rf "$(datadir)"
+ rm -rf "$(docdir)"
+
# various test targets
test speed test2: all
$(MAKE) -C tests $@
_______________________________________________ Qemu-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/qemu-devel
