diff options
author | Roland McGrath <roland@redhat.com> | 1995-08-01 18:48:58 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1995-08-01 18:48:58 +0000 |
commit | a4e66c61c0066040d93de1f598a043dec1ce78b3 (patch) | |
tree | aa0b1a861ff39d4a38b6c0d864d95f2860f37002 | |
parent | 8cfdca3e7271b3e63d06f3c0627ea35aebf2dc44 (diff) | |
download | gunmake-a4e66c61c0066040d93de1f598a043dec1ce78b3.tar.gz |
(CFLAGS): Add some warnings.
-rw-r--r-- | GNUmakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 35572e0..5112bd9 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -125,7 +125,8 @@ prog := make endif ifneq "$(findstring gcc,$(CC))" "" -CFLAGS = -g -W -Wunused -Wpointer-arith -Wreturn-type -Wswitch +CFLAGS = -g -Wall -Wtraditional -Wid-clash-31 -Wpointer-arith \ + -Wbad-function-cast -Wconversion else CFLAGS = -g endif |