Add cleaning option

This commit is contained in:
Rafal Kupiec 2018-07-12 13:29:59 +02:00
parent ef0c9a157b
commit 34a5eb817c
1 changed files with 4 additions and 0 deletions

View File

@ -1,2 +1,6 @@
ph7: api.c builtin.c compile.c constant.c hashmap.c lex.c lib.c memobj.c oo.c parse.c vfs.c vm.c interpreter.c
cc -o ph7 api.c builtin.c compile.c constant.c hashmap.c lex.c lib.c memobj.c oo.c parse.c vfs.c vm.c interpreter.c -W -Wunused -Wall -I. -Ofast
clean:
rm -rf *.o
rm -rf ph7