FreeCalypso > hg > fc-pcsc-tools
comparison libcommon/Makefile @ 0:f7145c77b7fb
starting libcommon: factored out of fc-simtool
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 11 Feb 2021 22:28:45 +0000 |
parents | |
children | e9e8ce12f5a5 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f7145c77b7fb |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 -I/usr/include/PCSC | |
3 OBJS= alpha_decode.o alpha_valid.o apdu.o atr.o cardconnect.o exit.o \ | |
4 hexdump.o hexread.o hexstr.o names.o | |
5 LIB= libcommon.a | |
6 | |
7 all: ${LIB} | |
8 | |
9 ${LIB}: ${OBJS} | |
10 ar rcu $@ ${OBJS} | |
11 ranlib $@ | |
12 | |
13 clean: | |
14 rm -f *.[oa] errs |