FreeCalypso > hg > freecalypso-citrine
comparison g23m-aci/Makefile @ 0:75a11d740a02
initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 09 Jun 2016 00:02:41 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:75a11d740a02 |
---|---|
1 LD= arm-elf-ld | |
2 | |
3 SUBDIR= aci aci_dti_mng aci_ext ati_ext bat dti gdd_dio ksd l2p uart | |
4 | |
5 XIP_OBJS= aci/xipcode.o aci_dti_mng/dti_conn_mng.o \ | |
6 aci_ext/aci_ext_pers.o ati_ext/ati_ext_mech.o ksd/xipcode.o \ | |
7 uart/xipcode.o | |
8 | |
9 all: xipcode.o dti | |
10 | |
11 ${SUBDIR}: FRC | |
12 cd $@; ${MAKE} ${MFLAGS} | |
13 | |
14 aci/xipcode.o: aci | |
15 @true | |
16 | |
17 aci_dti_mng/dti_conn_mng.o: aci_dti_mng | |
18 @true | |
19 | |
20 aci_ext/aci_ext_pers.o: aci_ext | |
21 @true | |
22 | |
23 ati_ext/ati_ext_mech.o: ati_ext | |
24 @true | |
25 | |
26 ksd/xipcode.o: ksd | |
27 @true | |
28 | |
29 uart/xipcode.o: uart | |
30 @true | |
31 | |
32 xipcode.o: ${XIP_OBJS} | |
33 ${LD} -r -o $@ ${XIP_OBJS} | |
34 | |
35 clean: FRC | |
36 rm -f *.[oa] *.out *errs | |
37 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
38 | |
39 FRC: |