764d95f844
ysyx_22040000 李心杨 Linux calcite 6.1.65 #1-NixOS SMP PREEMPT_DYNAMIC Sun Dec 3 06:32:13 UTC 2023 x86_64 GNU/Linux 20:00:32 up 22:58, 2 users, load average: 0.75, 0.70, 0.58
29 lines
659 B
Makefile
29 lines
659 B
Makefile
VSRC := $(wildcard vsrc/*.v)
|
|
CPPSRC := $(addprefix $(PWD)/,$(wildcard csrc/*.cpp))
|
|
PREFIX ?= build
|
|
OBJDIR := $(PREFIX)/obj
|
|
|
|
all: $(OBJDIR)
|
|
$(MAKE) -j -C $(OBJDIR) -f Vexample.mk Vexample
|
|
|
|
sim: all
|
|
$(call git_commit, "sim RTL") # DO NOT REMOVE THIS LINE!!!
|
|
@echo "Running" $(OBJDIR)/Vexample "..."
|
|
@echo "================================"
|
|
@$(OBJDIR)/Vexample +trace off
|
|
|
|
trace: all
|
|
$(call git_commit, "trace RTL") # DO NOT REMOVE THIS LINE!!!
|
|
@$(OBJDIR)/Vexample
|
|
|
|
|
|
$(OBJDIR): $(VSRC) $(CPPSRC)
|
|
mkdir -p $(OBJDIR)
|
|
verilator --trace --cc --exe --Mdir $(PWD)/$(OBJDIR) $(VSRC) $(CPPSRC)
|
|
|
|
include ../Makefile
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
$(RM) -r $(OBJDIR)
|