URL
https://opencores.org/ocsvn/zipcpu/zipcpu/trunk
Subversion Repositories zipcpu
[/] [zipcpu/] [trunk/] [bench/] [cpp/] [Makefile] - Rev 69
Go to most recent revision | Compare with Previous | Blame | View Log
################################################################################## Filename: Makefile## Project: Zip CPU -- a small, lightweight, RISC CPU soft core## Purpose: This makefile builds the final verilator simulation of the# zipsystem. Specifically, it builds the final C++ portion# of the simulator, and thus the final simulator executable.## This simulator depends upon the ncurses library.### Creator: Dan Gisselquist, Ph.D.# Gisselquist Technology, LLC################################################################################### Copyright (C) 2015, Gisselquist Technology, LLC## This program is free software (firmware): 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 MERCHANTIBILITY or# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License# for more details.## License: GPL, v3, as defined and found on www.gnu.org,# http://www.gnu.org/licenses/gpl.html###################################################################################all: zippy_tbCXX := g++FLAGS := -Wall -Og -gZASM := ../../sw/zasm/z2RTLD := ../../rtlINCS := -I$(RTLD)/obj_dir/ -I$(RTLD) -I/usr/share/verilator/include -I$(ZASM)SOURCES := zippy_tb.cpp memsim.cpp twoc.cpp $(ZASM)/zopcodes.cpp $(ZASM)/zparser.cppVLIB := /usr/share/verilator/include/verilated.cppRAWLIB := $(VLIB) $(RTLD)/obj_dir/Vzipsystem__ALL.aLIBS := $(RAWLIB) -lncursesTESTF := $(ZASM)/z.outDHRYSTONEF := ../asm/zipdhry.zzippy_tb: $(SOURCES) $(RAWLIB) $(ZASM)/zopcodes.h $(ZASM)/zparser.h testb.hzippy_tb: $(RTLD)/cpudefs.h$(CXX) $(FLAGS) $(INCS) $(SOURCES) $(LIBS) -o $@div_tb: div_tb.cpp twoc.cpp $(VLIB) $(RTLD)/obj_dir/Vdiv__ALL.a testb.h$(CXX) $(FLAGS) $(INCS) div_tb.cpp twoc.cpp $(VLIB) $(RTLD)/obj_dir/Vdiv__ALL.a -o $@pdump: pdump.cpp $(ZASM)/zopcodes.cpp $(ZASM)/zparser.cpppdump: $(ZASM)/zopcodes.h $(ZASM)/zparser.h testb.h twoc.cpp$(CXX) $(FLAGS) $(INCS) pdump.cpp $(ZASM)/zopcodes.cpp $(ZASM)/zparser.cpp twoc.cpp -o $@.PHONY: steststest: zippy_tb./zippy_tb -s $(TESTF).PHONY: itestitest: zippy_tb./zippy_tb $(TESTF).PHONY: testtest: zippy_tb stest./zippy_tb -a $(TESTF).PHONY: dhrystonedhrystone: zippy_tb./zippy_tb -a $(DHRYSTONEF).PHONY: cleanclean:rm ./zippy_tb
Go to most recent revision | Compare with Previous | Blame | View Log
