b66f0c6d56
ysyx_22040000 李心杨 Linux calcite 6.1.65 #1-NixOS SMP PREEMPT_DYNAMIC Sun Dec 3 06:32:13 UTC 2023 x86_64 GNU/Linux 18:28:18 up 21:26, 2 users, load average: 1.13, 0.58, 0.53
24 lines
No EOL
477 B
Makefile
24 lines
No EOL
477 B
Makefile
VSRC := $(wildcard vsrc/*.v)
|
|
CPPSRC := $(wildcard csrc/*.cpp)
|
|
PREFIX ?= .
|
|
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 "Write this Makefile by your self."
|
|
$(OBJDIR)/Vexample
|
|
|
|
|
|
$(OBJDIR): $(VSRC) $(CPPSRC)
|
|
mkdir -p $(OBJDIR)
|
|
verilator --cc --exe --Mdir $(PWD)/$(OBJDIR) $(VSRC) $(CPPSRC)
|
|
|
|
include ../Makefile
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
$(RM) -r $(OBJDIR)
|