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

Subversion Repositories eco32

[/] [eco32/] [trunk/] [stdalone/] [hello2/] [Makefile] - Rev 18

Go to most recent revision | Compare with Previous | Blame | View Log

#
# Makefile for "hello", a program for testing the boot loader
#

BUILD = ../../build

SRC = start.s main.c end.s
BIN = hello2.bin
MAP = hello2.map

.PHONY:         all install run clean

all:            $(BIN)

install:        $(BIN)
                mkdir -p $(BUILD)/stdalone
                cp $(BIN) $(BUILD)/stdalone
                cp $(MAP) $(BUILD)/stdalone

run:            $(BIN)
                $(BUILD)/bin/sim -i -t 1 -l $(BIN)

$(BIN):         $(SRC)
                $(BUILD)/bin/lcc -A -Wo-kernel \
                  -Wl-m -Wl$(MAP) -o $(BIN) $(SRC)

clean:
                rm -f *~ $(BIN) $(MAP)

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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