URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [dskchk2/] [dskchk2/] [Makefile] - Rev 249
Go to most recent revision | Compare with Previous | Blame | View Log
## Makefile for "dskchk2", a program to check the hard disk interface#BUILD = ../../../buildSRC = start.s main.c iolib.c biolib.c end.sBIN = dskchk2.binMAP = dskchk2.mapEXO = dskchk2.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 \-d ../disk.img$(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
