URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [orpsocv2/] [bench/] [sysc/] [src/] [Modules.make] - Rev 164
Go to most recent revision | Compare with Previous | Blame | View Log
# Make file for SystemC modules not associated directly with Verilator
#
# Copyright (C) 2009 Embecosm Limited
#
# Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
#
# This file is part of the cycle accurate model of the OpenRISC 1000 based
# system-on-chip, ORPSoC, built using Verilator.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 3 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>. */
# The C/C++ parts of this program are commented throughout in a fashion
# suitable for processing with Doxygen.
# Tools and flags
ARFLAGS = rcs
#CXXFLAGS += $(OPT_FAST) $(OPT_SLOW) $(OPT) $(PROF_FLAGS)
ifdef VLT_CPPFLAGS
CXXFLAGS += $(VLT_CPPFLAGS)
endif
CPPFLAGS += -DTARGET_BIG_ENDIAN
CXX ?= g++
#PROF_OPTS ?= -fbranch-probabilities -fvpt -funroll-loops -fpeel-loops -ftracer -O3
OPT_ALL ?= $(OPT_SLOW) $(OPT_FAST) $(OPT)
# Sub-directories
SYSC_INC_DIR = ../include
INCDIRS = -I$(SYSTEMC)/include -I$(SYSC_INC_DIR)
# Local objects
OBJS = DebugUnitSC.o \
GdbServerSC.o \
JtagSC.o \
TapAction.o \
TapActionDRScan.o \
TapActionIRScan.o \
TapActionReset.o \
TapStateMachine.o \
MemCache.o \
MpHash.o \
Or1200MonitorSC.o \
ResetSC.o \
RspConnection.o \
RspPacket.o \
SprCache.o \
Utils.o \
UartSC.o
LIB = libmodules.a
ifdef VLT_DEBUG
CXXFLAGS += -g
endif
# -----------------------------------------------------------------------------
# Rule to make dependency files
%.d: %.cpp
@set -e; rm -f $@; \
$(CXX) -MM $(CPPFLAGS) $(INCDIRS) $< > $@.$$$$; \
sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
rm -f $@.$$$$
# Rule to make object files
%.o: %.cpp
$(CXX) $(CPPFLAGS) $(PROF_OPTS) $(INCDIRS) $(CXXFLAGS) -c $<
# -----------------------------------------------------------------------------
# Make the library
$(LIB): $(OBJS)
$(AR) $(ARFLAGS) $@ $+
# -----------------------------------------------------------------------------
# Tidy up
.PHONY: clean
clean:
$(RM) *.d *.d.*
$(RM) *.o *.gcno *.gcda
$(RM) $(LIB)
# -----------------------------------------------------------------------------
# More modest tidy up for branch profiling
.PHONY: prof-clean
prof-clean:
$(RM) *.o
$(RM) $(LIB)
# -----------------------------------------------------------------------------
# Include the dependency files
# Comment out for now. include $(OBJS:.o=.d)
Go to most recent revision | Compare with Previous | Blame | View Log