commit d08162e709e61fc6c3f0ccbc6d954733b2f7d9ba parent 738b2e07d43b8d4674d9381dfe6e7ec8aaea6ec3 Author: Nihal Jere <nihal@nihaljere.xyz> Date: Tue, 23 Nov 2021 18:17:32 -0600 Makefile: add clean target Diffstat:
M | Makefile | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -3,3 +3,6 @@ nooc: main.o array.o util.o x64.o elf.o $(CC) main.o array.o x64.o util.o elf.o -o nooc + +clean: + rm -f *.o nooc