comparison gsm-fw/comlib/Makefile @ 665:39bacc7d5c49

gsm-fw: starting to compile comlib
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 28 Sep 2014 05:42:46 +0000
parents
children
comparison
equal deleted inserted replaced
664:d36f647c2432 665:39bacc7d5c49
1 CC= arm-elf-gcc
2 AR= arm-elf-ar
3 RANLIB= arm-elf-ranlib
4
5 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb
6 CPPFLAGS=-I../include -I../include/condat -I../gpf/inc -I../cdginc
7
8 OBJS= cl_des.o cl_imei.o cl_list.o cl_md5.o cl_ribu.o cl_rlcmac.o cl_shrd.o
9
10 all: comlib.a
11
12 comlib.a: ${OBJS}
13 ${AR} cru $@ ${OBJS}
14 ${RANLIB} $@
15
16 clean:
17 rm -f *.[oa] *errs