comparison libserial-linux/Makefile @ 661:fd7b447b99e3

libserial rename The version that was previously named libserial-newlnx is now libserial-linux, and the version that was previosly named libserial-orig is now libserial-posix. This new naming is more in line with the objective reality of the difference, moving away from naming based on our project history.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 05 Mar 2020 19:54:31 +0000
parents libserial-newlnx/Makefile@ab8410d06ca7
children
comparison
equal deleted inserted replaced
660:b34384991094 661:fd7b447b99e3
1 CC= gcc
2 CFLAGS= -O2
3 OBJS= baudtab.o nonblock.o openport.o setbaud.o setbyname.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