URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [hello2/] [Makefile] - Rev 119
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for "hello2", a program for testing the boot loader
#
BUILD = ../../build
SRC = start.s main.c end.s
BIN = hello2.bin
MAP = hello2.map
EXO = hello2.exo
.PHONY: all install run clean
all: $(BIN) $(EXO)
install: $(BIN) $(EXO)
mkdir -p $(BUILD)/stdalone
cp $(BIN) $(BUILD)/stdalone
cp $(MAP) $(BUILD)/stdalone
cp $(EXO) $(BUILD)/stdalone
run: $(BIN)
$(BUILD)/bin/sim -i -t 1 -l $(BIN) -a 0x10000
$(EXO): $(BIN)
$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
$(BIN): $(SRC)
$(BUILD)/bin/lcc -A -Wo-kernel \
-Wl-m -Wl$(MAP) -o $(BIN) $(SRC)
clean:
rm -f *~ $(BIN) $(MAP) $(EXO)
Go to most recent revision | Compare with Previous | Blame | View Log