about summary refs log tree commit diff stats
path: root/src/Makefile
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-22 18:11:38 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-22 18:11:38 -0800
commit3b4d7131cbe4615b24d96e2b053b8b38cafd6fd8 (patch)
tree6458008f041b6e125042ad16bd396354a7ba5b53 /src/Makefile
parent97a0254042e991e644948d26df77457344c397cc (diff)
downloadteliva-3b4d7131cbe4615b24d96e2b053b8b38cafd6fd8.tar.gz
standardize CFLAGS
Adding -Wpedantic creates a new warning. Leaving it alone for now:
  https://stackoverflow.com/questions/31526876/casting-when-using-dlsym
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 09c0669..45f3b41 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -8,7 +8,7 @@
 PLAT= none
 
 CC= gcc
-CFLAGS= -g -O2 -Wall $(MYCFLAGS)
+CFLAGS= -g -O2 -Wall -Wpedantic $(MYCFLAGS)
 AR= ar rc
 RANLIB= ranlib
 RM= rm -f