FreeCalypso > hg > fc-pcsc-tools
comparison libutil/Makefile @ 157:f064dbcc5f41
libutil split from libcommon
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 26 Feb 2021 20:19:58 +0000 |
parents | libcommon/Makefile@d991944aa5f3 |
children | 3698c8192d2d |
comparison
equal
deleted
inserted
replaced
156:5f1f3f6fd865 | 157:f064dbcc5f41 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 OBJS= alpha_decode.o alpha_fromfile.o alpha_valid.o decimal_str.o \ | |
4 filesearch.o gsm7_decode.o gsm7_encode.o gsm7_encode_table.o \ | |
5 gsm7_unpack.o hexread.o hexstr.o number_decode.o number_encode.o \ | |
6 pinentry.o plmncodes.o revnibbles.o | |
7 LIB= libutil.a | |
8 | |
9 all: ${LIB} | |
10 | |
11 ${LIB}: ${OBJS} | |
12 ar rcu $@ ${OBJS} | |
13 ranlib $@ | |
14 | |
15 clean: | |
16 rm -f *.[oa] errs |