mirror of
https://github.com/verilator/verilator.git
synced 2025-01-09 16:17:36 +00:00
70 lines
2.1 KiB
Makefile
70 lines
2.1 KiB
Makefile
#*****************************************************************************
|
|
#
|
|
# DESCRIPTION: Verilator Example: Makefile for inside source directory
|
|
#
|
|
# This calls the object directory makefile. That allows the objects to
|
|
# be placed in the "current directory" which simplifies the Makefile.
|
|
#
|
|
# Copyright 2003-2009 by Wilson Snyder. This program is free software; you can
|
|
# redistribute it and/or modify it under the terms of either the GNU
|
|
# General Public License or the Perl Artistic License.
|
|
#
|
|
#****************************************************************************/
|
|
|
|
default: test_default
|
|
|
|
# This must point to the root of the VERILATOR kit
|
|
VERILATOR_ROOT := $(shell pwd)/..
|
|
export VERILATOR_ROOT
|
|
|
|
# Pick up PERL and other variable settings
|
|
include $(VERILATOR_ROOT)/include/verilated.mk
|
|
|
|
DEBUG_ON = --debug --trace-dups
|
|
|
|
######################################################################
|
|
test_default: prep preproc compile run coverage
|
|
test_debug: prep_dbg preproc compile_dbg run coverage
|
|
test_nopublic: prep_dbg_np preproc compile_dbg run coverage
|
|
|
|
V_FLAGS = -f $(VERILATOR_ROOT)/test_v/input.vc
|
|
|
|
# Note the --public --output-split-cfunc is here for testing only,
|
|
# Avoid using these settings in real application Makefiles!
|
|
VERILATOR_FLAGS = --public --output-split-cfuncs 1000 --output-split 1000 \
|
|
--sp --coverage --stats --trace $(V_FLAGS) top.v
|
|
|
|
prep:
|
|
$(PERL) $(VERILATOR_ROOT)/bin/verilator $(VERILATOR_FLAGS)
|
|
prep_dbg:
|
|
$(PERL) $(VERILATOR_ROOT)/bin/verilator $(DEBUG_ON) $(VERILATOR_FLAGS)
|
|
prep_dbg_np:
|
|
$(PERL) $(VERILATOR_ROOT)/bin/verilator $(DEBUG_ON) $(VERILATOR_FLAGS) --nopublic
|
|
|
|
preproc:
|
|
cd obj_dir ; $(MAKE) -j 1 -f ../Makefile_obj preproc
|
|
|
|
compile:
|
|
cd obj_dir ; $(MAKE) -j 3 -f ../Makefile_obj
|
|
|
|
compile_dbg:
|
|
cd obj_dir ; $(MAKE) OPT=-g -j 3 -f ../Makefile_obj
|
|
|
|
run:
|
|
obj_dir/simx
|
|
|
|
coverage:
|
|
vcoverage $(V_FLAGS)
|
|
|
|
######################################################################
|
|
|
|
obj_dir:
|
|
mkdir $@
|
|
|
|
######################################################################
|
|
|
|
maintainer-copy::
|
|
clean mostlyclean distclean maintainer-clean::
|
|
-rm -rf obj_dir *.log *.dmp *.vpd *.vcd core logs
|
|
|