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

Subversion Repositories eco32

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

Details | Compare with Previous | View Log

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