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

Subversion Repositories zipcpu

[/] [zipcpu/] [trunk/] [bench/] [asm/] [Makefile] - Blame information for rev 57

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 50 dgisselq
################################################################################
2
#
3
# Filename:     Makefile
4
#
5
# Project:      Zip CPU -- a small, lightweight, RISC CPU soft core
6
#
7
# Purpose:      This makefile builds the various assembler level test benches
8
#               that exist.
9
#
10
# Creator:      Dan Gisselquist, Ph.D.
11
#               Gisselquist Tecnology, LLC
12
#
13
################################################################################
14
#
15
# Copyright (C) 2015, Gisselquist Technology, LLC
16
#
17
# This program is free software (firmware): you can redistribute it and/or
18
# modify it under the terms of  the GNU General Public License as published
19
# by the Free Software Foundation, either version 3 of the License, or (at
20
# your option) any later version.
21
#
22
# This program is distributed in the hope that it will be useful, but WITHOUT
23
# ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
24
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
25
# for more details.
26
#
27
# License:      GPL, v3, as defined and found on www.gnu.org,
28
#               http://www.gnu.org/licenses/gpl.html
29
#
30
#
31
################################################################################
32
#
33 57 dgisselq
all: zipdhry.z testdiv.z wdt.z halttest.z
34 41 dgisselq
ZASM := ../../sw/zasm/zasm
35
ZDMP := ../../sw/zasm/zdump
36
LIBS := ../../sw/lib
37
INCS := -I../../sw/zasm
38
 
39
dump: zipdhry.txt testdiv.txt
40
 
41 57 dgisselq
halttest.z: halttest.S
42
        $(ZASM) $(INCS) $^ -o $@
43 41 dgisselq
zipdhry.z: zipdhry.S $(LIBS)/divs.S $(LIBS)/divu.S stack.S
44
        $(ZASM) $(INCS) $^ -o $@
45
zipdhry.txt: zipdhry.z
46
        $(ZDMP) zipdhry.z > zipdhry.txt
47
 
48
wdt.z: wdt.S
49
        $(ZASM) $(INCS) $^ -o $@
50
 
51
.PHONY: testdiv
52
testdiv: testdiv.z
53
testdiv.z: testdiv.S $(LIBS)/divs.S $(LIBS)/divu.S stack.S
54
        $(ZASM) $(INCS) $^ -o $@
55
 
56
testdiv.txt: testdiv.z
57
        $(ZDMP) testdiv.z > testdiv.txt
58
 
59
clean:
60
        rm -rf *.z

powered by: WebSVN 2.1.0

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