URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [fpga/] [tests/] [test_054/] [hellodsp/] [Makefile] - Rev 295
Compare with Previous | Blame | View Log
#
# Makefile for "hellodsp"
#
BUILD = ../../../../build
SRC = hellodsp.s
OBJ = hellodsp.o
BIN = hellodsp.bin
all: $(BIN)
install: $(BIN)
run: $(BIN)
$(BUILD)/bin/sim -i -c -l $(BIN)
$(BIN): $(OBJ)
$(BUILD)/bin/ld -h -rc 0xC0000000 -o $(BIN) $(OBJ)
$(OBJ): $(SRC)
$(BUILD)/bin/as -o $(OBJ) $(SRC)
clean:
rm -f *~ $(OBJ) $(BIN)