| 1 |
2 |
dgisselq |
################################################################################
|
| 2 |
|
|
#
|
| 3 |
|
|
# Filename: Makefile
|
| 4 |
|
|
#
|
| 5 |
|
|
# Project: Zip CPU -- a small, lightweight, RISC CPU soft core
|
| 6 |
|
|
#
|
| 7 |
|
|
# Purpose: This makefile builds the final verilator simulation of the
|
| 8 |
|
|
# zipsystem. Specifically, it builds the final C++ portion
|
| 9 |
49 |
dgisselq |
# of the simulator, and thus the final simulator executable.
|
| 10 |
2 |
dgisselq |
#
|
| 11 |
49 |
dgisselq |
# This simulator depends upon the libelf library.
|
| 12 |
2 |
dgisselq |
#
|
| 13 |
|
|
# Creator: Dan Gisselquist, Ph.D.
|
| 14 |
|
|
# Gisselquist Technology, LLC
|
| 15 |
|
|
#
|
| 16 |
|
|
################################################################################
|
| 17 |
|
|
#
|
| 18 |
49 |
dgisselq |
# Copyright (C) 2015,2017, Gisselquist Technology, LLC
|
| 19 |
2 |
dgisselq |
#
|
| 20 |
|
|
# This program is free software (firmware): you can redistribute it and/or
|
| 21 |
|
|
# modify it under the terms of the GNU General Public License as published
|
| 22 |
|
|
# by the Free Software Foundation, either version 3 of the License, or (at
|
| 23 |
|
|
# your option) any later version.
|
| 24 |
|
|
#
|
| 25 |
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
| 26 |
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
| 27 |
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
| 28 |
|
|
# for more details.
|
| 29 |
|
|
#
|
| 30 |
|
|
# License: GPL, v3, as defined and found on www.gnu.org,
|
| 31 |
|
|
# http://www.gnu.org/licenses/gpl.html
|
| 32 |
|
|
#
|
| 33 |
|
|
#
|
| 34 |
|
|
################################################################################
|
| 35 |
|
|
#
|
| 36 |
|
|
all: zip_sim
|
| 37 |
|
|
|
| 38 |
|
|
CXX := g++
|
| 39 |
49 |
dgisselq |
CFLAGS := -Wall -Og -g
|
| 40 |
|
|
OBJDIR := obj-pc
|
| 41 |
10 |
dgisselq |
SWHOST := ../../sw/host
|
| 42 |
2 |
dgisselq |
RTLD := ../../rtl
|
| 43 |
49 |
dgisselq |
RTLOBJD := $(RTLD)/obj_dir
|
| 44 |
|
|
VERILATOR_ROOT ?= $(shell bash -c 'verilator -V|grep VERILATOR_ROOT | head -1 | sed -e " s/^.*=\s*//"')
|
| 45 |
|
|
VROOT := $(VERILATOR_ROOT)
|
| 46 |
|
|
VINCS := -I$(VROOT)/include -I$(VROOT)/include/vltstd
|
| 47 |
|
|
INCS := -I$(RTLOBJD) -I$(RTLD) -I$(VROOT)/include -I$(SWHOST) $(VINCS)
|
| 48 |
|
|
SOURCES := zip_sim.cpp twoc.cpp qspiflashsim.cpp uartsim.cpp zipelf.cpp byteswap.cpp
|
| 49 |
|
|
VLSRCS := verilated.cpp verilated_vcd_c.cpp
|
| 50 |
|
|
VLOBJS := $(OBJDIR)/verilated.o $(OBJDIR)/verilated_vcd_c.o
|
| 51 |
|
|
VLIB := $(addprefix $(VROOT)/include/,$(VLSRCS))
|
| 52 |
|
|
RAWLIB := $(RTLOBJD)/Vbusmaster__ALL.a
|
| 53 |
|
|
OBJECTS := $(addprefix $(OBJDIR)/,$(subst .cpp,.o,$(SOURCES) $(VLSRCS)))
|
| 54 |
10 |
dgisselq |
LIBS := $(RAWLIB) -lelf
|
| 55 |
2 |
dgisselq |
TESTF := $(ZASM)/z.out
|
| 56 |
|
|
DHRYSTONEF := ../asm/zipdhry.z
|
| 57 |
|
|
|
| 58 |
49 |
dgisselq |
$(OBJDIR)/%.o: %.cpp
|
| 59 |
|
|
$(CXX) $(CFLAGS) $(INCS) -c $< -o $@
|
| 60 |
2 |
dgisselq |
|
| 61 |
49 |
dgisselq |
$(OBJDIR)/%.o: $(VROOT)/include/%.cpp
|
| 62 |
|
|
$(CXX) $(CFLAGS) $(INCS) -c $< -o $@
|
| 63 |
2 |
dgisselq |
|
| 64 |
49 |
dgisselq |
zip_sim: $(OBJECTS)
|
| 65 |
|
|
$(CXX) $(CFLAGS) $(INCS) $(OBJECTS) $(LIBS) -o $@
|
| 66 |
2 |
dgisselq |
|
| 67 |
|
|
|
| 68 |
|
|
|
| 69 |
49 |
dgisselq |
|
| 70 |
|
|
define build-depends
|
| 71 |
|
|
@echo "Building dependencies"
|
| 72 |
|
|
@$(CXX) $(CFLAGS) $(INCS) -MM $(VLIB) $(SOURCES) > $(OBJDIR)/xdepends.txt
|
| 73 |
|
|
@sed -e 's/^.*.o: /$(OBJDIR)\/&/' < $(OBJDIR)/xdepends.txt > $(OBJDIR)/depends.txt
|
| 74 |
|
|
@rm $(OBJDIR)/xdepends.txt
|
| 75 |
|
|
endef
|
| 76 |
|
|
|
| 77 |
|
|
tags: $(VLIB) $(SOURCES)
|
| 78 |
|
|
@ctags $(SOURCES) $(VLIB)
|
| 79 |
|
|
|
| 80 |
|
|
.PHONY: depends
|
| 81 |
|
|
depends: tags $(OBJDIR)/
|
| 82 |
|
|
$(build-depends)
|
| 83 |
|
|
|
| 84 |
|
|
$(OBJDIR)/:
|
| 85 |
|
|
@bash -c "if [ ! -e $(OBJDIR) ]; then mkdir -p $(OBJDIR)/; fi"
|
| 86 |
|
|
|
| 87 |
|
|
$(OBJDIR)/depends.txt: $(OBJDIR)/ depends
|
| 88 |
|
|
|
| 89 |
2 |
dgisselq |
.PHONY: clean
|
| 90 |
|
|
clean:
|
| 91 |
49 |
dgisselq |
rm -rf $(OBJDIR)/
|
| 92 |
|
|
rm -f ./zip_sim
|
| 93 |
|
|
|
| 94 |
|
|
-include $(OBJDIR)/depends.txt
|