Add make clean
This commit is contained in:
parent
f4a540f487
commit
b670630c1d
1 changed files with 3 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -2,3 +2,6 @@ CCFLAGS := -Wall -Wextra -Wpedantic -Werror -std=c99 -D_DEFAULT_SOURCE
|
|||
|
||||
kilo: kilo.c
|
||||
$(CC) $(CCFLAGS) kilo.c -o kilo
|
||||
|
||||
clean:
|
||||
rm -f ./kilo
|
||||
|
|
Reference in a new issue