about summary refs log tree commit diff stats
path: root/src/Makefile
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-22 19:25:59 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-22 19:25:59 -0700
commitc03ee20559da1e43d326511162baef12622f5ba2 (patch)
treeb3791bbfb260182b7ede87137e1caadb53356d7f /src/Makefile
parent74f8cd15bb43110973deffdeb9dd229797e5b328 (diff)
downloadteliva-c03ee20559da1e43d326511162baef12622f5ba2.tar.gz
clean up a few warnings with gcc 9.3.0
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index e0d4c9f..cb9f5e7 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -9,7 +9,7 @@ PLAT= none
 
 CC= gcc
 CFLAGS= -O2 -Wall $(MYCFLAGS)
-AR= ar rcu
+AR= ar rc
 RANLIB= ranlib
 RM= rm -f
 LIBS= -lm $(MYLIBS)