comparison libgsmefr/Makefile @ 31:19a90fa1f608

libgsmefr: implement SID classification
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 23 Nov 2022 08:40:08 +0000
parents libgsmfrp/Makefile@3db7af1249cb
children 88468d5b3590
comparison
equal deleted inserted replaced
30:2272ba6f6879 31:19a90fa1f608
1 CC= gcc
2 CFLAGS= -O2
3 OBJS= sidclass.o
4 LIB= libgsmefr.a
5
6 INSTALL_PREFIX= /usr/local
7
8 all: ${LIB}
9
10 ${LIB}: ${OBJS}
11 ar rcu $@ ${OBJS}
12 ranlib $@
13
14 install:
15 mkdir -p ${INSTALL_PREFIX}/include
16 install -c -m 444 gsm_efr.h ${INSTALL_PREFIX}/include
17 mkdir -p ${INSTALL_PREFIX}/lib
18 install -c -m 444 ${LIB} ${INSTALL_PREFIX}/lib
19
20 clean:
21 rm -f *.[oa] errs