07f187056b14a4dbdcd3971bb97cc6da24467fe6
[apps/pfixtools.git] / mk / cflags.mk
1 ##############################################################################
2 #          pfixtools: a collection of postfix related tools                  #
3 #          ~~~~~~~~~                                                         #
4 #  ________________________________________________________________________  #
5 #                                                                            #
6 #  Redistribution and use in source and binary forms, with or without        #
7 #  modification, are permitted provided that the following conditions        #
8 #  are met:                                                                  #
9 #                                                                            #
10 #  1. Redistributions of source code must retain the above copyright         #
11 #     notice, this list of conditions and the following disclaimer.          #
12 #  2. Redistributions in binary form must reproduce the above copyright      #
13 #     notice, this list of conditions and the following disclaimer in the    #
14 #     documentation and/or other materials provided with the distribution.   #
15 #  3. The names of its contributors may not be used to endorse or promote    #
16 #     products derived from this software without specific prior written     #
17 #     permission.                                                            #
18 #                                                                            #
19 #  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND   #
20 #  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE     #
21 #  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR        #
22 #  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS    #
23 #  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR    #
24 #  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF      #
25 #  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS  #
26 #  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN   #
27 #  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)   #
28 #  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF    #
29 #  THE POSSIBILITY OF SUCH DAMAGE.                                           #
30 ##############################################################################
31
32 ifneq ($(filter 4.%,$(shell gcc -dumpversion)),)
33   GCC4=1
34 endif
35
36 # Use pipes and not temp files.
37 CFLAGS += -pipe
38 # optimize even more
39 CFLAGS += -O2
40 # let the type char be unsigned by default
41 CFLAGS += -funsigned-char
42 CFLAGS += -fstrict-aliasing
43 # turn on all common warnings
44 CFLAGS += -Wall
45 # turn on extra warnings
46 CFLAGS += $(if $(GCC4),-Wextra,-W)
47 # treat warnings as errors
48 CFLAGS += -Werror
49 CFLAGS += -Wchar-subscripts
50 # warn about undefined preprocessor identifiers
51 CFLAGS += -Wundef
52 # warn about local variable shadowing another local variable
53 #CFLAGS += -Wshadow
54 # warn about casting of pointers to increased alignment requirements
55 CFLAGS += -Wcast-align
56 # make string constants const
57 CFLAGS += -Wwrite-strings
58 # warn about implicit conversions with side effects
59 # fgets, calloc and friends take an int, not size_t...
60 #CFLAGS += -Wconversion
61 # warn about comparisons between signed and unsigned values
62 CFLAGS += -Wsign-compare
63 # warn about unused declared stuff
64 CFLAGS += -Wunused
65 CFLAGS += -Wno-unused-parameter
66 # warn about variable use before initialization
67 CFLAGS += -Wuninitialized
68 # warn about variables which are initialized with themselves
69 CFLAGS += $(if $(GCC4),-Winit-self)
70 # warn about pointer arithmetic on void* and function pointers
71 CFLAGS += -Wpointer-arith
72 # warn about multiple declarations
73 #CFLAGS += -Wredundant-decls
74 # warn if the format string is not a string literal
75 CFLAGS += -Wformat-nonliteral
76 # do not warn about zero-length formats.
77 CFLAGS += -Wno-format-zero-length
78 # do not warn about strftime format with y2k issues
79 CFLAGS += -Wno-format-y2k
80 # warn about functions without format attribute that should have one
81 CFLAGS += -Wmissing-format-attribute