diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-08-17 17:21:52 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-08-17 17:21:52 -0300 |
commit | 05f55cc062739f0a0765882904b9f30d7073ef85 (patch) | |
tree | 346beafc0c8b68953e6079ee2cd1ccb46c5e1bd6 /makefile | |
parent | c787dccd9b5c3e55547a2c4bb598c0276de65034 (diff) | |
download | lua-05f55cc062739f0a0765882904b9f30d7073ef85.tar.gz lua-05f55cc062739f0a0765882904b9f30d7073ef85.tar.bz2 lua-05f55cc062739f0a0765882904b9f30d7073ef85.zip |
more warning checking (mainly related to const strings).
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | # | 1 | # |
2 | ## $Id: makefile,v 1.18 1999/02/23 15:01:29 roberto Exp roberto $ | 2 | ## $Id: makefile,v 1.19 1999/02/24 21:31:03 roberto Exp roberto $ |
3 | ## Makefile | 3 | ## Makefile |
4 | ## See Copyright Notice in lua.h | 4 | ## See Copyright Notice in lua.h |
5 | # | 5 | # |
@@ -28,7 +28,7 @@ CONFIG = -DPOPEN -D_POSIX_SOURCE | |||
28 | 28 | ||
29 | # Compilation parameters | 29 | # Compilation parameters |
30 | CC = gcc | 30 | CC = gcc |
31 | CWARNS = -Wall -Wmissing-prototypes -Wshadow -pedantic -Wpointer-arith -Wcast-align -Waggregate-return | 31 | CWARNS = -Wall -Wmissing-prototypes -Wshadow -pedantic -Wpointer-arith -Wcast-align -Waggregate-return -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-declarations -Wnested-externs |
32 | CFLAGS = $(CONFIG) $(CWARNS) -ansi -O2 | 32 | CFLAGS = $(CONFIG) $(CWARNS) -ansi -O2 |
33 | 33 | ||
34 | 34 | ||