diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/g23m-aci/Makefile	Thu Jun 09 00:02:41 2016 +0000
@@ -0,0 +1,39 @@
+LD=	arm-elf-ld
+
+SUBDIR=	aci aci_dti_mng aci_ext ati_ext bat dti gdd_dio ksd l2p uart
+
+XIP_OBJS=	aci/xipcode.o aci_dti_mng/dti_conn_mng.o \
+		aci_ext/aci_ext_pers.o ati_ext/ati_ext_mech.o ksd/xipcode.o \
+		uart/xipcode.o
+
+all:	xipcode.o dti
+
+${SUBDIR}: FRC
+	cd $@; ${MAKE} ${MFLAGS}
+
+aci/xipcode.o:	aci
+	@true
+
+aci_dti_mng/dti_conn_mng.o:	aci_dti_mng
+	@true
+
+aci_ext/aci_ext_pers.o:	aci_ext
+	@true
+
+ati_ext/ati_ext_mech.o:	ati_ext
+	@true
+
+ksd/xipcode.o:	ksd
+	@true
+
+uart/xipcode.o:	uart
+	@true
+
+xipcode.o:	${XIP_OBJS}
+	${LD} -r -o $@ ${XIP_OBJS}
+
+clean: FRC
+	rm -f *.[oa] *.out *errs
+	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
+
+FRC: