FreeCalypso > hg > freecalypso-tools
comparison target-utils/c139-lldbg/Makefile @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 11 Jun 2016 00:13:35 +0000 |
parents | |
children | d7ef80dce192 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e7502631a0f9 |
---|---|
1 CC= arm-elf-gcc | |
2 CFLAGS= -Os -fno-builtin | |
3 CPPFLAGS=-I../include | |
4 LD= arm-elf-ld | |
5 OBJCOPY=arm-elf-objcopy | |
6 | |
7 PROG= lldbg | |
8 OBJS= entry.o cmdtab.o entryinfo.o main.o mygetchar.o uartbase.o | |
9 LIBS= ../libcommon/libcommon.a ../libprintf/libprintf.a ../libbase/libbase.a | |
10 LDS= lldbg.lds | |
11 | |
12 TC_LIBS=`${CC} -print-file-name=libc.a` \ | |
13 `${CC} -print-file-name=libgcc.a` | |
14 | |
15 all: ${PROG}.bin | |
16 | |
17 ${PROG}.elf: ${OBJS} ${LIBS} ${LDS} | |
18 ${LD} -N -T ${LDS} -o $@ ${OBJS} ${LIBS} \ | |
19 --start-group ${TC_LIBS} --end-group | |
20 | |
21 ${PROG}.bin: ${PROG}.elf | |
22 ${OBJCOPY} -O binary $< $@ | |
23 | |
24 clean: | |
25 rm -f *.o *errs *core *.elf *.bin *.srec crt0.S | |
26 | |
27 FRC: |