Structure to init and manage my repositories
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 775B

1234567891011121314151617181920212223242526272829303132
  1. MAKEFLAGS += --no-print-directory
  2. help:
  3. @echo "Help is not yet implemented"
  4. @echo "Possible Maketargets: status clean gitsubup gits giti"
  5. gitstatus:
  6. @echo "\n\n\033[1;34m╔═══════════╗"
  7. @echo "║ unittest ║"
  8. @echo "╚═══════════╝\033[00m"
  9. @ineach "giti -s && echo -n ' - ' && pwd"
  10. status:
  11. unittest_status
  12. clean:
  13. @ineach -e eclipse-workspace,.git -p "make -k clean"
  14. cleanall:
  15. @ineach -e eclipse-workspace,.git -p "make -kiC unittest cleanall"
  16. gitsubup:
  17. @ineach -e eclipse-workspace,.git -p gitsubup
  18. gits:
  19. @ineach -e eclipse-workspace,.git -p "gits;read -rsn1 -p Press\ any\ key\ to\ continue..."
  20. _giti_:
  21. @ineach -e eclipse-workspace,.git giti
  22. giti:
  23. @make _giti_ | less -r