comparison sw/libserial/Makefile @ 2:a4918a161d2e

sw: starting with libserial, copied from fc-sim-sniff
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 11 Oct 2024 22:37:11 +0000
parents
children a10657f8024e
comparison
equal deleted inserted replaced
1:b3190839cce3 2:a4918a161d2e
1 CC= gcc
2 CFLAGS= -O2
3 OBJS= nonblock.o openport.o setbaud.o
4 LIB= libserial.a
5
6 all: ${LIB}
7
8 ${LIB}: ${OBJS}
9 ar rcu $@ ${OBJS}
10 ranlib $@
11
12 clean:
13 rm -f *.[oa] errs