FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/g23m-aci/dti/Makefile @ 778:ac329f4627ac
gsm-fw/g23m-aci/dti compiles into libdti.a
author | Michael Spacefalcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 07 Mar 2015 23:00:01 +0000 |
parents | 5a0c58760ae2 |
children |
comparison
equal
deleted
inserted
replaced
777:08f148c63220 | 778:ac329f4627ac |
---|---|
1 # stub Makefile, to be filled out | 1 CC= arm-elf-gcc |
2 all: | 2 AR= arm-elf-ar |
3 RANLIB= arm-elf-ranlib | |
4 | |
5 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb | |
6 CPPFLAGS=-I. -I../../include -I../../include/condat -I../../gpf/inc \ | |
7 -I../../cdginc | |
8 | |
9 OBJS= dti_int.o dti_kerf.o dti_kerp.o | |
10 | |
11 all: libdti.a | |
12 | |
13 libdti.a: ${OBJS} | |
14 ${AR} cru $@ ${OBJS} | |
15 ${RANLIB} $@ | |
3 | 16 |
4 clean: | 17 clean: |
5 rm -f *.[oa] *.out *errs | 18 rm -f *.[oa] *.out *errs |