diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-11-22 18:11:38 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-11-22 18:11:38 -0800 |
commit | 3b4d7131cbe4615b24d96e2b053b8b38cafd6fd8 (patch) | |
tree | 6458008f041b6e125042ad16bd396354a7ba5b53 /src | |
parent | 97a0254042e991e644948d26df77457344c397cc (diff) | |
download | teliva-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')
-rw-r--r-- | src/Makefile | 2 |
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 |