FreeCalypso > hg > sms-coding-utils
annotate libcoding/Makefile @ 26:c8cb05b69118
libcoding alpha addr: support both encoding and decoding
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 13 Jun 2024 01:55:19 +0000 |
parents | 2a19b44c272e |
children | 7418ca2e9949 |
rev | line source |
---|---|
26
c8cb05b69118
libcoding alpha addr: support both encoding and decoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
25
diff
changeset
|
1 OBJS= alpha_addr.o alpha_addr_enc.o check_high_bit.o gsm7_encode.o \ |
c8cb05b69118
libcoding alpha addr: support both encoding and decoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
25
diff
changeset
|
2 gsm7_encode2.o gsm7_encode_table.o gsm7_pack.o hexdigits.o hexout.o \ |
c8cb05b69118
libcoding alpha addr: support both encoding and decoding
Mychaela Falconia <falcon@freecalypso.org>
parents:
25
diff
changeset
|
3 number_encode.o timestamp.o ucs2_bigend.o utf8_decode.o utf8_decode2.o |
0
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 LIB= libcoding.a |
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
25
2a19b44c272e
convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
6 include ../config.defs |
2a19b44c272e
convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
7 |
0
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 all: ${LIB} |
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 |
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 ${LIB}: ${OBJS} |
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 ar rcu $@ ${OBJS} |
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 ranlib $@ |
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 |
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 clean: |
2d0082216916
libcoding: beginning with a subset of uptools version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 rm -f *.[oa] errs |