diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libutil/Makefile	Sun Feb 21 19:08:14 2021 +0000
@@ -0,0 +1,13 @@
+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