FreeCalypso > hg > freecalypso-sw
diff gsm-fw/g23m-glue/gdi/Makefile @ 836:6c5d3fecbc67
gdi: audio.c compiles
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 25 Apr 2015 19:21:20 +0000 |
parents | 91ed96b28c7a |
children | 80959c73a21b |
line wrap: on
line diff
--- a/gsm-fw/g23m-glue/gdi/Makefile Thu Apr 23 07:01:32 2015 +0000 +++ b/gsm-fw/g23m-glue/gdi/Makefile Sat Apr 25 19:21:20 2015 +0000 @@ -1,5 +1,18 @@ -# stub Makefile, to be filled out -all: +CC= arm-elf-gcc +AR= arm-elf-ar +RANLIB= arm-elf-ranlib + +CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb +CPPFLAGS=-I. -I../../include -I../../include/condat -I../../gpf/inc \ + -I../../cdginc + +OBJS= audio.o + +all: libgdi.a + +libgdi.a: ${OBJS} + ${AR} cru $@ ${OBJS} + ${RANLIB} $@ clean: rm -f *.[oa] *.out *errs