comparison sw/libserial/Makefile @ 21:c4346cdc9641

sw/libserial: based on FC host tools version
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 22 Aug 2023 02:44:23 +0000
parents
children
comparison
equal deleted inserted replaced
20:f6579cef76e1 21:c4346cdc9641
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