rvaiya / warpd

A modal keyboard-driven virtual pointer
MIT License
2.85k stars 126 forks source link

linux: avoid spurious warnings from make #257

Open aspiers opened 1 year ago

aspiers commented 1 year ago

If the artifacts to clean don't exist, rm(1) will emit a warning which may worry the user. But there is nothing to worry about, so silence the warning with the -f flag.

Similarly, if the bin/ directory already exists, mkdir(1) will emit an unnecessary warning, so add the -p flag.