Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Please enable make mrproper from toplevel  (Read 13270 times)

0 Members and 1 Guest are viewing this topic.

christoph

  • Full Member
  • ***
  • Posts: 102
    • View Profile
    • http://www.christoph-egger.org
Please enable make mrproper from toplevel
« 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

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Please enable make mrproper from toplevel
« Reply #1 on: November 02, 2008, 09:38:20 am »
Sure :)
Laurent Gomila - SFML developer

 

anything