Ever burned a cake?
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.

39 lines
1007B

  1. /* Require space after START */
  2. #define REQUIRE_SPACE
  3. /* colorize output */
  4. #define ENABLE_COLOR 1
  5. /* preferred, @FILENAME @SHORT @ARGS */
  6. #define NEW_MACROS 1
  7. /* $@ $* $+ */
  8. #define OLD_MACROS 1
  9. /* ./bake bake will compile bake.c, basically just proves that binary files really are supported,
  10. * the bake.c file must exist next to the executable for this work correctly. Not meant as a serious feature,
  11. * DO NOT enable this by default or in user builds. */
  12. #define INCLUDE_AUTONOMOUS_COMPILE 0
  13. #if ENABLE_COLOR == 1
  14. # define RED "\033[91m"
  15. # define GREEN "\033[92m"
  16. # define YELLOW "\033[93m"
  17. # define DIM "\033[2m"
  18. # define BOLD "\033[1m"
  19. # define RESET "\033[0m"
  20. #elif ENABLE_COLOR
  21. # define RED "\033[91;5m"
  22. # define GREEN "\033[96;7m"
  23. # define YELLOW "\033[94m"
  24. # define DIM "\033[7m"
  25. # define BOLD "\033[1;4m"
  26. # define RESET "\033[0m"
  27. #else
  28. # define RED
  29. # define GREEN
  30. # define YELLOW
  31. # define DIM
  32. # define BOLD
  33. # define RESET
  34. #endif