Skip to content

Commit

Permalink
More fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
magnmaeh committed Jan 25, 2024
1 parent 94ec5bc commit 973db26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ TEST_FOLDERS := $(subst makefile,, $(MAKEFILESS))
all: run

run:
set -e && \
for test in $(TEST_FOLDERS) ; do \
make -C $$test all ; \
done
Expand Down
5 changes: 3 additions & 2 deletions verilator.mk
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ run: $(VERILATOR_EXE)
@mkfifo named_pipe
@tee output.txt < named_pipe &
@./$(VERILATOR_EXE) > named_pipe; ./$(PARSER) $(PROJECT_NAME) $$? output.txt
@rm named_pipe

clean:
rm -rf obj_dir

@rm -rf obj_dir
@rm -f named_pipe

0 comments on commit 973db26

Please sign in to comment.