FreeCalypso > hg > freecalypso-sw
annotate target-utils/loadagent/Makefile @ 487:f612f9c3fe77
gsm-fw/gpf/conf: GSM and GPRS stack configurations imported from Leonardo
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> | 
|---|---|
| date | Sun, 29 Jun 2014 20:13:43 +0000 | 
| parents | 90af6744d256 | 
| children | e7ba9fcb3637 | 
| rev | line source | 
|---|---|
| 
19
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
1 CC= arm-elf-gcc | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
2 CFLAGS= -Os -fno-builtin | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
3 CPPFLAGS=-I../include | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
4 LD= arm-elf-ld | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
5 OBJCOPY=arm-elf-objcopy | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
6 | 
| 
378
 
3164604a6c70
install compalstage-*.bin and loadagent.srec from target-utils
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents: 
41 
diff
changeset
 | 
7 INSTDIR=/usr/local/share/freecalypso | 
| 
 
3164604a6c70
install compalstage-*.bin and loadagent.srec from target-utils
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents: 
41 
diff
changeset
 | 
8 | 
| 
19
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
9 PROG= loadagent | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
10 OBJS= crt0.o cmdtab.o main.o mygetchar.o | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
11 LIBS= ../libcommon/libcommon.a ../libload/libload.a ../libprintf/libprintf.a | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
12 LDS= ../env/iram.lds | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
13 | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
14 TC_LIBS=`${CC} -print-file-name=libc.a` \ | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
15 `${CC} -print-file-name=libgcc.a` | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
16 | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
17 all: ${PROG}.srec | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
18 | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
19 crt0.S: ../env/crt0.S | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
20 ln -s $< . | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
21 | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
22 ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} | 
| 
41
 
1c50add5e202
loadagent stack bottom moved to 0x81FFFC: be friendly to chain-loading
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents: 
19 
diff
changeset
 | 
23 ${LD} -N --defsym stack_bottom=0x81FFFC -T ${LDS} -o $@ ${OBJS} \ | 
| 
19
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
24 --start-group ${LIBS} --end-group \ | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
25 --start-group ${TC_LIBS} --end-group | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
26 | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
27 ${PROG}.srec: ${PROG}.elf | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
28 ${OBJCOPY} -O srec --srec-forceS3 --srec-len=30 $< $@ | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
29 | 
| 
378
 
3164604a6c70
install compalstage-*.bin and loadagent.srec from target-utils
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents: 
41 
diff
changeset
 | 
30 install: | 
| 
386
 
90af6744d256
make install in target-utils: do mkdir -p before the install command
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents: 
378 
diff
changeset
 | 
31 mkdir -p ${INSTDIR} | 
| 
378
 
3164604a6c70
install compalstage-*.bin and loadagent.srec from target-utils
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents: 
41 
diff
changeset
 | 
32 install -c ${PROG}.srec ${INSTDIR} | 
| 
 
3164604a6c70
install compalstage-*.bin and loadagent.srec from target-utils
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents: 
41 
diff
changeset
 | 
33 | 
| 
19
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
34 clean: | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
35 rm -f *.o *errs *core *.elf *.bin *.srec crt0.S | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
36 | 
| 
 
c0e063494194
loadagent built with memory dump commands
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
37 FRC: | 
