Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-24 | Put all FOR_xxx blocks after all CLEANUP_xxx in generated/flags.h so the ↵ | Rob Landley | |
usages don't have to be in alphabetical order. | |||
2014-02-16 | Make CLEANUP transitions work, so multiple NEWTOY() can exist in the same file. | Rob Landley | |
Don't #undefine TT in the CLEANUP blocks of generated/flags.h, and #ifdef around the other TT definition. That way you can put a union at the start of your GLOBALS() with the arguments filled out by option parsing, and then have multiple main() functions with different argumetns and different FLAG_x macros, while sharing infrastructure that's not under lib. | |||
2014-02-16 | Various cleanups found by Tom Sparrow's static analysis. | Rob Landley | |
2014-02-08 | Fix segfault with single build of a command with bare longopts. | Rob Landley | |
2013-10-03 | Switch flag generation from shell to C. | Rob Landley | |
This should actually generate FLAG_longopt 0 #defines for disabled bare longopts (ala ls without --color). Put temporary executables under "generated" (including instlist for install). |