diff options
Diffstat (limited to 'Bachelor/Mikroprozessorsysteme2/ARM202U/EXAMPLES/OVERLAY/MAKEFILE')
| -rw-r--r-- | Bachelor/Mikroprozessorsysteme2/ARM202U/EXAMPLES/OVERLAY/MAKEFILE | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Bachelor/Mikroprozessorsysteme2/ARM202U/EXAMPLES/OVERLAY/MAKEFILE b/Bachelor/Mikroprozessorsysteme2/ARM202U/EXAMPLES/OVERLAY/MAKEFILE new file mode 100644 index 0000000..fcf6760 --- /dev/null +++ b/Bachelor/Mikroprozessorsysteme2/ARM202U/EXAMPLES/OVERLAY/MAKEFILE @@ -0,0 +1,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
+
|
