URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [hello/] [Makefile] - Rev 245
Compare with Previous | Blame | View Log
## Makefile for "hello", a program for testing the boot loader#BUILD = ../../buildSRC = hello.sOBJ = hello.oBIN = hello.binMAP = hello.mapEXO = hello.exo.PHONY: all install run cleanall: $(BIN) $(EXO)install: $(BIN) $(EXO)mkdir -p $(BUILD)/stdalonecp $(BIN) $(BUILD)/stdalonecp $(MAP) $(BUILD)/stdalonecp $(EXO) $(BUILD)/stdalonerun: $(BIN)$(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000$(EXO): $(BIN)$(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)$(BIN): $(OBJ)$(BUILD)/bin/ld -h -rc 0xC0010000 \-m $(MAP) -o $(BIN) $(OBJ)$(OBJ): $(SRC)$(BUILD)/bin/as -o $(OBJ) $(SRC)clean:rm -f *~ $(OBJ) $(BIN) $(MAP) $(EXO)
