a315f9ac2b
ysyx_22040000 李心杨 Linux calcite 6.1.65 #1-NixOS SMP PREEMPT_DYNAMIC Sun Dec 3 06:32:13 UTC 2023 x86_64 GNU/Linux 17:29:41 up 20:27, 2 users, load average: 1.23, 1.01, 0.86
68 lines
1.8 KiB
Makefile
68 lines
1.8 KiB
Makefile
# Verilated -*- Makefile -*-
|
|
# DESCRIPTION: Verilator output: Makefile for building Verilated archive or executable
|
|
#
|
|
# Execute this makefile from the object directory:
|
|
# make -f Vexample.mk
|
|
|
|
default: Vexample
|
|
|
|
### Constants...
|
|
# Perl executable (from $PERL)
|
|
PERL = perl
|
|
# Path to Verilator kit (from $VERILATOR_ROOT)
|
|
VERILATOR_ROOT = /nix/store/lyzgj5m2zhsw9m3v1fnzr3dp1z9myyaz-verilator-5.018/share/verilator
|
|
# SystemC include directory with systemc.h (from $SYSTEMC_INCLUDE)
|
|
SYSTEMC_INCLUDE ?=
|
|
# SystemC library directory with libsystemc.a (from $SYSTEMC_LIBDIR)
|
|
SYSTEMC_LIBDIR ?=
|
|
|
|
### Switches...
|
|
# C++ code coverage 0/1 (from --prof-c)
|
|
VM_PROFC = 0
|
|
# SystemC output mode? 0/1 (from --sc)
|
|
VM_SC = 0
|
|
# Legacy or SystemC output mode? 0/1 (from --sc)
|
|
VM_SP_OR_SC = $(VM_SC)
|
|
# Deprecated
|
|
VM_PCLI = 1
|
|
# Deprecated: SystemC architecture to find link library path (from $SYSTEMC_ARCH)
|
|
VM_SC_TARGET_ARCH = linux
|
|
|
|
### Vars...
|
|
# Design prefix (from --prefix)
|
|
VM_PREFIX = Vexample
|
|
# Module prefix (from --prefix)
|
|
VM_MODPREFIX = Vexample
|
|
# User CFLAGS (from -CFLAGS on Verilator command line)
|
|
VM_USER_CFLAGS = \
|
|
|
|
# User LDLIBS (from -LDFLAGS on Verilator command line)
|
|
VM_USER_LDLIBS = \
|
|
|
|
# User .cpp files (from .cpp's on Verilator command line)
|
|
VM_USER_CLASSES = \
|
|
main \
|
|
|
|
# User .cpp directories (from .cpp's on Verilator command line)
|
|
VM_USER_DIR = \
|
|
csrc \
|
|
|
|
|
|
### Default rules...
|
|
# Include list of all generated classes
|
|
include Vexample_classes.mk
|
|
# Include global rules
|
|
include $(VERILATOR_ROOT)/include/verilated.mk
|
|
|
|
### Executable rules... (from --exe)
|
|
VPATH += $(VM_USER_DIR)
|
|
|
|
main.o: csrc/main.cpp
|
|
$(OBJCACHE) $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(OPT_FAST) -c -o $@ $<
|
|
|
|
### Link rules... (from --exe)
|
|
Vexample: $(VK_USER_OBJS) $(VK_GLOBAL_OBJS) $(VM_PREFIX)__ALL.a $(VM_HIER_LIBS)
|
|
$(LINK) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) $(LIBS) $(SC_LIBS) -o $@
|
|
|
|
|
|
# Verilated -*- Makefile -*-
|