comparison gsm-fw/libiram/Makefile @ 860:cbc49d533b7d

gsm-fw: new implementation of bzero() and some specialized bcopy variants
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sun, 03 May 2015 04:11:41 +0000
parents
children
comparison
equal deleted inserted replaced
859:d32dff865575 860:cbc49d533b7d
1 CC= arm-elf-gcc
2 CFLAGS= -O2 -fno-builtin -mthumb-interwork
3 ASFLAGS=-mthumb-interwork
4 AR= arm-elf-ar
5 RANLIB= arm-elf-ranlib
6
7 OBJS= bcopy_chunk32.o bcopy_words.o bzero.o
8
9 all: libiram.a
10
11 libiram.a: ${OBJS}
12 ${AR} cru $@ ${OBJS}
13 ${RANLIB} $@
14
15 clean:
16 rm -f *.[oa] *errs