From 34a5eb817c56c94526d736bc94c75e639e0ff04e Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Thu, 12 Jul 2018 13:29:59 +0200 Subject: [PATCH] Add cleaning option --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 192a83b..a3091e1 100644 --- a/Makefile +++ b/Makefile @@ -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