SFML community forums

General => Feature requests => Topic started by: christoph on November 02, 2008, 12:19:58 am

Title: Please enable make mrproper from toplevel
Post by: christoph on November 02, 2008, 12:19:58 am
Hi

No longer hijacking http://www.sfml-dev.org/forum/viewtopic.php?p=4718 ;)

Could you add an mrproper target in your toplevel Makefile (calling the ones in samples and src/SFML? I was experimenting with this so I have an patch (it's an no-brainer but anyway):

Code: [Select]
diff a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -13,3 +13,7 @@ install:
 clean:
  @(cd ./src/SFML && $(MAKE) $@)
  @(cd ./samples  && $(MAKE) $@)
+
+mrproper:
+ @(cd ./src/SFML && $(MAKE) $@)
+ @(cd ./samples  && $(MAKE) $@)


Thanks

  Christoph
Title: Please enable make mrproper from toplevel
Post by: Laurent on November 02, 2008, 09:38:20 am
Sure :)