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

Subversion Repositories eco32

[/] [eco32/] [trunk/] [stdalone/] [shpart/] [Makefile] - Blame information for rev 245

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 18 hellwig
#
2
# Makefile for "shpart", a program to show the partitions on a hard disk
3
#
4
 
5
BUILD = ../../build
6
 
7
SRC = start.s main.c iolib.c biolib.c end.s
8
BIN = shpart.bin
9
MAP = shpart.map
10 105 hellwig
EXO = shpart.exo
11 18 hellwig
 
12
.PHONY:         all install run clean
13
 
14 105 hellwig
all:            $(BIN) $(EXO)
15 18 hellwig
 
16 105 hellwig
install:        $(BIN) $(EXO)
17 18 hellwig
                mkdir -p $(BUILD)/stdalone
18
                cp $(BIN) $(BUILD)/stdalone
19
                cp $(MAP) $(BUILD)/stdalone
20 105 hellwig
                cp $(EXO) $(BUILD)/stdalone
21 18 hellwig
 
22
run:            $(BIN)
23 245 hellwig
                $(BUILD)/bin/sim -i -s 1 -t 0 -l $(BIN) -a 0x10000 \
24 105 hellwig
                  -d $(BUILD)/run/disk.img
25 18 hellwig
 
26 105 hellwig
$(EXO):         $(BIN)
27
                $(BUILD)/bin/bin2exo -S2 0x10000 $(BIN) $(EXO)
28
 
29 18 hellwig
$(BIN):         $(SRC)
30
                $(BUILD)/bin/lcc -A -Wo-kernel \
31
                  -Wl-m -Wl$(MAP) -o $(BIN) $(SRC)
32
 
33
clean:
34 105 hellwig
                rm -f *~ $(BIN) $(MAP) $(EXO)

powered by: WebSVN 2.1.0

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