Makefile should offer `clean` that doesn't delete third-party dependencies
When developing for QB64 itself (or even when building QB64 applications) it's fairly common to want to clean out ./internal/temp and any built copies of libqb. This is easy enough using make clean, but it has the unfortunate side effect of also clearing out any built 3rd party dependencies such as freeglut and others, which do take a bit of time to rebuild. Making changes to any of the 3rd party dependencies is very uncommon, so it would be nice to be able to avoid that cost and only clean the things that are directly part of QB64.
It could probably be called clean-libqb or something along those lines, and would clean out compiled libqb copies along with ./internal/temp, qbx.o, and maybe a few others. QB64's purge logic would call this instead of the regular clean.