FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/serial/Makefile @ 143:afceeeb2cba1
Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 12 Nov 2013 05:35:48 +0000 |
parents | nuc-fw/serial/Makefile@3b5c3f3646fb |
children | fc713944bd1c |
comparison
equal
deleted
inserted
replaced
142:15d5977390c2 | 143:afceeeb2cba1 |
---|---|
1 CC= arm-elf-gcc | |
2 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb | |
3 LD= arm-elf-ld | |
4 | |
5 OBJS= debug.o init.o serialswitch.o uart.o | |
6 | |
7 HDRS= faxdata.h serialswitch.h traceswitch.h uart.h uartfax.h | |
8 | |
9 all: xipcode.o | |
10 | |
11 ${OBJS}: ${HDRS} | |
12 | |
13 xipcode.o: ${OBJS} | |
14 ${LD} -r -o $@ ${OBJS} | |
15 | |
16 clean: | |
17 rm -f *.[oa] *errs |