From 38892fa3d73e4df669c4d4e7c3966d6112d067ec Mon Sep 17 00:00:00 2001 From: Sean Anderson Date: Sat, 5 Nov 2022 12:06:01 -0400 Subject: [PATCH] Clean/ignore log directory Clean out the log directory like the rest, and ignore it in git. Signed-off-by: Sean Anderson --- .gitignore | 1 + Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index a33e29d..794fa9e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ *.json *.asc *.post.v +log # test artifacts __pycache__ diff --git a/Makefile b/Makefile index 5b4b495..74027cd 100644 --- a/Makefile +++ b/Makefile @@ -103,4 +103,5 @@ asc: $(addprefix rtl/,$(addsuffix .asc,$(MODULES))) .PHONY: clean clean: rm -f *.fst + rm -rf log cd rtl && rm -f *.json *.asc *.pre *.vvp *.d *.synth.v *.place.v