maekawatoshiki / lit-x86

Lit is a programming language designed fast & light weight with LLVM

Home Page:http://maekawatoshiki.github.io/lit-homepage

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use $(RM) rather than plain rm

jserv opened this issue · comments

Using $(RM) rather than plain rm can prevent rm from complaining the following:

rm: cannot remove 'a.out': No such file or directory

It is straightforward to use $(RM) in Makefile.

I didn't know. Thank you!