view sw/libserial/Makefile @ 4:1dacfe7d5b3d

sw: add top Makefile
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 11 Oct 2024 23:56:48 +0000
parents a4918a161d2e
children a10657f8024e
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
OBJS=	nonblock.o openport.o setbaud.o
LIB=	libserial.a

all:	${LIB}

${LIB}:	${OBJS}
	ar rcu $@ ${OBJS}
	ranlib $@

clean:
	rm -f *.[oa] errs