blob: fcf6760821ea6f0329f92cb053d931a00ee5cb09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
LIB=
.c.o:
armcc -bi -c -APCS 3/32/noswst $<
.s.o:
armasm -bi -APCS 3/32/noswst $<
all: ov/root
ov/root: main.o uue.o getdata.o overmgrs.o maininit.o startup.o
armlink -bin -base 0x40000 -data 0x10000 -ov ovlist \
-o ov maininit.o startup.o main.o overmgrs.o uue.o getdata.o \
-FIRST maininit.o ${LIB}/armlib.32b -map -symbols - -list tS.map \
-v
startup.o: startup.s
overmgrs.o: overmgrs.s
maininit.o: maininit.s
main.o: main.c
uue.o: uue.c
getdata.o: getdata.c
|