diff libnumdb/Makefile @ 8:ffd48df829a7

beginning of libnumdb: reading the binary file
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 26 Jun 2022 13:07:33 -0800
parents
children 2cc790b66359
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libnumdb/Makefile	Sun Jun 26 13:07:33 2022 -0800
@@ -0,0 +1,13 @@
+CC=	gcc
+CFLAGS=	-O2
+OBJS=	readbin.o
+LIB=	libnumdb.a
+
+all:	${LIB}
+
+${LIB}:	${OBJS}
+	ar rcu $@ ${OBJS}
+	ranlib $@
+
+clean:
+	rm -f *.[oa] errs