annotate loadagent/Makefile @ 5:4a7a325ed1b6

loadagent: printf hooked in
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 29 Apr 2013 17:53:54 +0000
parents ddda170fa6f4
children 5eaafa83be60
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
1 CC= arm-elf-gcc
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
2 CFLAGS= -Os -fno-builtin
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
3 LD= arm-elf-ld
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
4
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
5 OBJS= crt0.o main.o serio.o serwait.o
5
4a7a325ed1b6 loadagent: printf hooked in
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 2
diff changeset
6 PRINTF= libprintf/libprintf.a
2
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
7
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
8 TC_LIBS=`${CC} -print-file-name=libc.a` \
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
9 `${CC} -print-file-name=libgcc.a`
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
10
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
11 all: loadagent.elf
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
12
5
4a7a325ed1b6 loadagent: printf hooked in
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 2
diff changeset
13 loadagent.elf: ${OBJS} ${PRINTF} loadagent.lds
4a7a325ed1b6 loadagent: printf hooked in
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 2
diff changeset
14 ${LD} -N -T loadagent.lds -o $@ ${OBJS} ${PRINTF} \
2
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
15 --start-group ${TC_LIBS} --end-group
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
16
5
4a7a325ed1b6 loadagent: printf hooked in
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 2
diff changeset
17 ${PRINTF}: FRC
4a7a325ed1b6 loadagent: printf hooked in
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 2
diff changeset
18 cd libprintf; make ${MFLAGS}
4a7a325ed1b6 loadagent: printf hooked in
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 2
diff changeset
19
2
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
20 clean:
ddda170fa6f4 loadagent.elf compiled and linked, no printf yet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
21 rm -f *.o *errs *core *.elf *.bin *.srec
5
4a7a325ed1b6 loadagent: printf hooked in
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 2
diff changeset
22 cd libprintf; make clean
4a7a325ed1b6 loadagent: printf hooked in
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 2
diff changeset
23
4a7a325ed1b6 loadagent: printf hooked in
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 2
diff changeset
24 FRC: