floooh / fips

High-level build system for distributed, multi-platform C/C++ projects.
MIT License
471 stars 82 forks source link

build clean option, make clean help added #284

Closed mattiasljungstrom closed 2 years ago

mattiasljungstrom commented 2 years ago

Added a 'clean' option to 'fips build', there is one under 'fips make clean' but it wasn't in the help description. So, added that too. :)

Let me know what you think, I'm not 100% sure on syntax. Is there a way to grab all the configs currently generated? With this setup you can do 'fips build clean win64-vs*' and it will clean all VS builds. But you get an error if one doesn't exists.

floooh commented 2 years ago

Yes looks good, also syntax wise. The pattern matching for build configs is a feature which I thought would be useful in the very beginning, but never actually use, so in my opinion it's more or less just a leftover from the early days.

PS: Thanks for the PR :)