view libutil/Makefile @ 1:b149db92cb0e

libutil started
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 21 Feb 2021 19:08:14 +0000
parents
children 86b4f288862d
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
OBJS=	hexstdin.o hexstr.o
LIB=	libutil.a

all:	${LIB}

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

clean:
	rm -f *.[oa] errs