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.

32 lines
1.5KB

  1. Select among the @BAKEs in a file? -- EXCESSIVE
  2. This could be user-useful but would require an overhaul of the options.
  3. Specify the shell environment somehow? -- NOT NEEDED
  4. Could be nice, could be easy to implement with some different starter
  5. command, such as @BAKE_ENV /bin/sh [command ...], but the power of
  6. regular old /bin/sh alone should be enough for everything. Calling
  7. a script is perfectly practical considering the rooting facilities.
  8. Use Make or a script, this is nearing overkill.
  9. Enviromental variables? -- WORKS, NO CHANGES NEEDED
  10. No idea how the support is currently, should be fine. Anything more is
  11. overkill, use Make if you need ?= and $(XXX).
  12. Longer @EMBEDDED_BAKE handle? -- NOT NEEDED
  13. Possibly a good idea for large binary files, but I would rather just
  14. write the "Select among @BAKEs" feature than cheap out with an additional
  15. handle. Besides, this is only useful for a gimick autonomous compile
  16. feature. If I decided to write the @BAKE_ENV feature, I'd probably need
  17. to also include a @EMBEDDED_BAKE_ENV which is a little ridiculous.
  18. This will at best make me consider writing/using hashmaps, which would
  19. be a techinical improvement, but definitely is overkill.
  20. More Macros? -- NOT NEEDED
  21. Luckily, with the rewrite to expand, this would be very easy to add.
  22. But I don't know of any that wouldn't be overkill. If I ever think of
  23. any that would be substantially useful, I might add them.
  24. Kill globals. -- DONE
  25. I'd need to first isolate them into bake_expand, which is a bit of a
  26. pain but a thing I'll definitely do.