FreeCalypso > hg > themwi-ota-tools
annotate libutil/Makefile @ 6:86b4f288862d
libutil: functions for encoding MSISDN record
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 22 Feb 2021 00:41:12 +0000 |
parents | b149db92cb0e |
children | 2c022e0334c4 |
rev | line source |
---|---|
1 | 1 CC= gcc |
2 CFLAGS= -O2 | |
6
86b4f288862d
libutil: functions for encoding MSISDN record
Mychaela Falconia <falcon@freecalypso.org>
parents:
1
diff
changeset
|
3 OBJS= gsm7_encode.o gsm7_encode_table.o hexstdin.o hexstr.o number_encode.o |
1 | 4 LIB= libutil.a |
5 | |
6 all: ${LIB} | |
7 | |
8 ${LIB}: ${OBJS} | |
9 ar rcu $@ ${OBJS} | |
10 ranlib $@ | |
11 | |
12 clean: | |
13 rm -f *.[oa] errs |