summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-08-17 17:21:52 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-08-17 17:21:52 -0300
commit05f55cc062739f0a0765882904b9f30d7073ef85 (patch)
tree346beafc0c8b68953e6079ee2cd1ccb46c5e1bd6 /makefile
parentc787dccd9b5c3e55547a2c4bb598c0276de65034 (diff)
downloadlua-github-05f55cc062739f0a0765882904b9f30d7073ef85.tar.gz
more warning checking (mainly related to const strings).
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 13bcdc06..7dc366d7 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,5 @@
#
-## $Id: makefile,v 1.18 1999/02/23 15:01:29 roberto Exp roberto $
+## $Id: makefile,v 1.19 1999/02/24 21:31:03 roberto Exp roberto $
## Makefile
## See Copyright Notice in lua.h
#
@@ -28,7 +28,7 @@ CONFIG = -DPOPEN -D_POSIX_SOURCE
# Compilation parameters
CC = gcc
-CWARNS = -Wall -Wmissing-prototypes -Wshadow -pedantic -Wpointer-arith -Wcast-align -Waggregate-return
+CWARNS = -Wall -Wmissing-prototypes -Wshadow -pedantic -Wpointer-arith -Wcast-align -Waggregate-return -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-declarations -Wnested-externs
CFLAGS = $(CONFIG) $(CWARNS) -ansi -O2