aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 @@
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
30CC = gcc 30CC = gcc
31CWARNS = -Wall -Wmissing-prototypes -Wshadow -pedantic -Wpointer-arith -Wcast-align -Waggregate-return 31CWARNS = -Wall -Wmissing-prototypes -Wshadow -pedantic -Wpointer-arith -Wcast-align -Waggregate-return -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-declarations -Wnested-externs
32CFLAGS = $(CONFIG) $(CWARNS) -ansi -O2 32CFLAGS = $(CONFIG) $(CWARNS) -ansi -O2
33 33
34 34