OpenCores
URL https://opencores.org/ocsvn/zipcpu/zipcpu/trunk

Subversion Repositories zipcpu

[/] [zipcpu/] [trunk/] [Makefile] - Blame information for rev 209

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 28 dgisselq
################################################################################
2 209 dgisselq
##
3
## Filename:    Makefile
4
##
5
## Project:     Zip CPU -- a small, lightweight, RISC CPU soft core
6
##
7
## Purpose:     This is a grand makefile for the entire project.  It will
8
##              build the assembler, and a Verilog testbench, and then
9
##              even test the CPU via that test bench.
10
##
11
##      Targets include:
12
##
13
##              bench   Build the CPP test bench/debugger facility.
14
##
15
##              doc     Build the ZipCPU chip specification and the GPL
16
##                      license.  These should be distributed pre-built, but
17
##                      you are welcome to rebuild them if you would like.
18
##
19
##              rtl     Run Verilator on the RTL
20
##
21
##              sw      Build the obsolete assembler, binutils, and GCC.  By
22
##                      default, this also 'install's the compiler into the
23
##                      sw/install/ subdirectory as well.
24
##
25
##              test    Run the test bench on the assembler test file.
26
##
27
##
28
## Creator:     Dan Gisselquist, Ph.D.
29
##              Gisselquist Technology, LLC
30
##
31 28 dgisselq
################################################################################
32 209 dgisselq
##
33
## Copyright (C) 2015-2017, Gisselquist Technology, LLC
34
##
35
## This program is free software (firmware): you can redistribute it and/or
36
## modify it under the terms of  the GNU General Public License as published
37
## by the Free Software Foundation, either version 3 of the License, or (at
38
## your option) any later version.
39
##
40
## This program is distributed in the hope that it will be useful, but WITHOUT
41
## ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
42
## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
43
## for more details.
44
##
45
## You should have received a copy of the GNU General Public License along
46
## with this program.  (It's in the $(ROOT)/doc directory.  Run make with no
47
## target there if the PDF file isn't present.)  If not, see
48
##  for a copy.
49
##
50
## License:     GPL, v3, as defined and found on www.gnu.org,
51
##              http://www.gnu.org/licenses/gpl.html
52
##
53
##
54 28 dgisselq
################################################################################
55 209 dgisselq
##
56
##
57 28 dgisselq
.PHONY: all
58 209 dgisselq
all: rtl sw sim
59 28 dgisselq
 
60 202 dgisselq
MAKE := make    # Was `which make`
61 209 dgisselq
SUBMAKE := $(MAKE) --no-print-directory -C
62 49 dgisselq
 
63 36 dgisselq
.PHONY: doc
64
doc:
65 202 dgisselq
        @echo "Building docs"; cd doc;
66 209 dgisselq
        +@$(SUBMAKE) doc/
67 36 dgisselq
 
68 28 dgisselq
.PHONY: rtl
69
rtl:
70 202 dgisselq
        @echo "Building rtl for Verilator";
71 209 dgisselq
        +@$(SUBMAKE) rtl/
72 28 dgisselq
 
73
.PHONY: sw
74
sw:
75 202 dgisselq
        @echo "Building toolchain";
76 209 dgisselq
        +@$(SUBMAKE) sw/
77 28 dgisselq
 
78 202 dgisselq
.PHONY: sim
79
sim:    cppsim vsim
80 28 dgisselq
 
81 202 dgisselq
cppsim:
82
        @echo "Building in C++ simulator";
83 209 dgisselq
        +@$(SUBMAKE) sim/cpp
84 28 dgisselq
 
85 202 dgisselq
vsim: rtl
86
        @echo "Building Verilator simulator";
87 209 dgisselq
        +@$(SUBMAKE) sim/verilator
88 202 dgisselq
 
89
clean:
90
        +@$(SUBMAKE) --directory=rtl
91
        +@$(SUBMAKE) --directory=sw
92
        +@$(SUBMAKE) --directory=sim/cpp
93
        +@$(SUBMAKE) --directory=sim/verilator
94
        +@$(SUBMAKE) --directory=bench/asm
95
        +@$(SUBMAKE) --directory=bench/cpp
96
 
97 209 dgisselq
.PHONY: bench
98
bench: rtl sw
99
        @echo "Building in bench/asm"; $(SUBMAKE) bench/asm
100 202 dgisselq
 
101 209 dgisselq
.PHONY: test
102
test: bench sim
103
        @echo "Running simulation tests"; $(SUBMAKE) sim/verilator test
104 202 dgisselq
 
105
# .PHONY: dhrystone
106
# dhrystone: sw bench
107
        # @echo "Building Asm Dhrystone"; $(SUBMAKE) zipdhry.z --no-print-directory
108 209 dgisselq
        # @echo "Running Dhrystone"; $(SUBMAKE) sim/verilator dhrystone

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.