URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [fpga/] [tests/] [test_100/] [hello/] [Makefile] - Rev 311
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for "hello"
#
BUILD = ../../../../build
SRC = start.s main.c end.s
BIN = hello.bin
MAP = hello.map
all: $(BIN)
install: $(BIN)
$(BIN): $(SRC)
$(BUILD)/bin/lcc -A -Wo-kernel \
-Wl-rc -Wl0xC0000000 -Wl-rd -Wl0xC000C000 \
-Wl-m -Wl$(MAP) -o $(BIN) $(SRC)
clean:
rm -f *~ $(BIN) $(MAP)
Go to most recent revision | Compare with Previous | Blame | View Log