mirror of
https://github.com/verilator/verilator.git
synced 2025-01-06 06:37:45 +00:00
73594e5aa5
git-svn-id: file://localhost/svn/verilator/trunk/verilator@999 77ca24e4-aefa-0310-84f0-b9a241c72d87
76 lines
2.0 KiB
Makefile
76 lines
2.0 KiB
Makefile
# $Id$ */
|
|
#*****************************************************************************
|
|
#
|
|
# 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-2008 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
|
|
|
|
# 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
|
|
|
|
######################################################################
|
|
|
|
ifneq ($(VCS_HOME),)
|
|
PRODUCTS += --vcs
|
|
endif
|
|
|
|
ifneq ($(NC_ROOT),)
|
|
PRODUCTS += --nc
|
|
endif
|
|
|
|
PRODUCTS += --v3
|
|
|
|
ifeq ($(VERILATOR_AUTHOR_SITE),1)
|
|
DRIVER_FLAGS += -j 4
|
|
endif
|
|
|
|
######################################################################
|
|
|
|
.PHONY: test
|
|
test:
|
|
$(PERL) driver.pl $(DRIVER_FLAGS) $(PRODUCTS)
|
|
|
|
######################################################################
|
|
|
|
vcs:
|
|
$(PERL) driver.pl $(DRIVER_FLAGS) --vcs --stop
|
|
|
|
######################################################################
|
|
|
|
nc:
|
|
$(PERL) driver.pl $(DRIVER_FLAGS) --nc --stop
|
|
|
|
######################################################################
|
|
|
|
v3:
|
|
$(PERL) driver.pl $(DRIVER_FLAGS) --v3 --stop
|
|
|
|
######################################################################
|
|
|
|
random:
|
|
$(PERL) driver.pl $(DRIVER_FLAGS) --optimize : --stop
|
|
|
|
random_forever:
|
|
while ( VERILATOR_NO_DEBUG=1 CPPFLAGS_ADD=-Wno-error $(MAKE) random ) ; do \
|
|
echo ; \
|
|
done
|
|
|
|
######################################################################
|
|
maintainer-copy::
|
|
clean mostlyclean distclean maintainer-clean::
|
|
-rm -rf obj_dir simv* simx* csrc INCA_libs *.log logs
|
|
|