Files
verilator/test_c/Makefile_obj
T

34 lines
1.1 KiB
Makefile
Raw Normal View History

2008-06-09 21:25:10 -04:00
# -*- Makefile -*-
2006-08-26 11:35:28 +00:00
#*****************************************************************************
#
# DESCRIPTION: Verilator Example: Makefile for inside object directory
#
# This is executed in the object directory, and called by ../Makefile
2006-08-26 11:35:28 +00:00
#
2015-01-07 18:25:53 -05:00
# Copyright 2003-2015 by Wilson Snyder. This program is free software; you can
2006-08-26 11:35:28 +00:00
# redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
2006-08-26 11:35:28 +00:00
#
#*****************************************************************************
default: simx
include Vtop.mk
#######################################################################
# Compile flags
CPPFLAGS += -DVL_DEBUG=1
ifeq ($(CFG_WITH_CCWARN),yes) # Local... Else don't burden users
2006-08-26 11:35:28 +00:00
CPPFLAGS += -DVL_THREADED=1
2006-10-18 12:59:30 +00:00
CPPFLAGS += -W -Werror -Wall
2006-08-26 11:35:28 +00:00
endif
#######################################################################
# Linking final exe -- presumes have a sim_main.cpp
simx: sim_main.o $(VK_GLOBAL_OBJS) $(VM_PREFIX)__ALL.a
$(LINK) $(LDFLAGS) -g $^ $(LOADLIBES) $(LDLIBS) -o $@ $(LIBS) 2>&1 | c++filt
2006-08-26 11:35:28 +00:00
sim_main.o: sim_main.cpp $(VM_PREFIX).h