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

Subversion Repositories eco32

[/] [eco32/] [trunk/] [stdalone/] [memtest/] [Makefile] - Blame information for rev 245

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 213 hellwig
#
2
# Makefile for "memtest", a program for testing the memory
3
#
4
 
5
BUILD = ../../build
6
 
7
SRC = start.s main.c iolib.c biolib.c end.s
8
BIN = memtest.bin
9
MAP = memtest.map
10
EXO = memtest.exo
11
 
12
.PHONY:         all install run clean
13
 
14
all:            $(BIN) $(EXO)
15
 
16
install:        $(BIN) $(EXO)
17
                mkdir -p $(BUILD)/stdalone
18
                cp $(BIN) $(BUILD)/stdalone
19
                cp $(MAP) $(BUILD)/stdalone
20
                cp $(EXO) $(BUILD)/stdalone
21
 
22
run:            $(BIN)
23 245 hellwig
                $(BUILD)/bin/sim -i -m 32 -s 1 -t 0 -l $(BIN) -a 0x10000
24 213 hellwig
 
25
$(EXO):         $(BIN)
26
                $(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
27
 
28
$(BIN):         $(SRC)
29
                $(BUILD)/bin/lcc -A -Wo-kernel \
30
                  -Wl-m -Wl$(MAP) -o $(BIN) $(SRC)
31
 
32
clean:
33
                rm -f *~ $(BIN) $(MAP) $(EXO)

powered by: WebSVN 2.1.0

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