Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized


  41 # capture new not-yet-standard interfaces. Someday -lxnet alone should be enough
  42 # when IPv6 inspired new interfaces are part of standards.
  43 LDLIBS +=       -ldhcpagent -lxnet -lsocket -lipadm
  44 
  45 # these #defines are required to use UNIX 98 interfaces
  46 _D_UNIX98_EXTN= -D_XOPEN_SOURCE=500 -D__EXTENSIONS__
  47 
  48 $(OBJS)         := CPPFLAGS +=  $(_D_UNIX98_EXTN)
  49 
  50 LINTFLAGS +=    $(_D_UNIX98_EXTN)
  51 
  52 # This shouldn't be necessary, but linking with libxnet requires it.
  53 LINTFLAGS +=    -erroff=E_INCONS_ARG_DECL2 -erroff=E_INCONS_VAL_TYPE_DECL2
  54 
  55 # This is needed to avoid littering the code with useless LINTED statements
  56 # for each place where pointers are casted.  It's not perfect, but being
  57 # perfect would require a bigger rewrite.
  58 LINTFLAGS +=    -erroff=E_BAD_PTR_CAST_ALIGN
  59 
  60 CERRWARN += -_gcc=-Wno-switch
  61 CERRWARN += -_gcc=-Wno-uninitialized
  62 
  63 # not linted
  64 SMATCH=off
  65 
  66 CTFCONVERT_HOOK = && $(CTFCONVERT_O)
  67 CTFMERGE_HOOK = && $(CTFMERGE) -L VERSION -o $@ $(OBJS)
  68 $(OBJS) := CFLAGS += $(CTF_FLAGS)
  69 
  70 .KEEP_STATE:
  71 
  72 .PARALLEL:  $(OBJS)
  73 
  74 all: $(PROG)
  75 
  76 $(PROG): $(OBJS)
  77         $(LINK.c) $(OBJS) -o $@ $(LDLIBS) $(CTFMERGE_HOOK)
  78         $(POST_PROCESS)
  79 
  80 include         ../Makefile.lib
  81 


  41 # capture new not-yet-standard interfaces. Someday -lxnet alone should be enough
  42 # when IPv6 inspired new interfaces are part of standards.
  43 LDLIBS +=       -ldhcpagent -lxnet -lsocket -lipadm
  44 
  45 # these #defines are required to use UNIX 98 interfaces
  46 _D_UNIX98_EXTN= -D_XOPEN_SOURCE=500 -D__EXTENSIONS__
  47 
  48 $(OBJS)         := CPPFLAGS +=  $(_D_UNIX98_EXTN)
  49 
  50 LINTFLAGS +=    $(_D_UNIX98_EXTN)
  51 
  52 # This shouldn't be necessary, but linking with libxnet requires it.
  53 LINTFLAGS +=    -erroff=E_INCONS_ARG_DECL2 -erroff=E_INCONS_VAL_TYPE_DECL2
  54 
  55 # This is needed to avoid littering the code with useless LINTED statements
  56 # for each place where pointers are casted.  It's not perfect, but being
  57 # perfect would require a bigger rewrite.
  58 LINTFLAGS +=    -erroff=E_BAD_PTR_CAST_ALIGN
  59 
  60 CERRWARN += -_gcc=-Wno-switch
  61 CERRWARN += $(CNOWARN_UNINIT)
  62 
  63 # not linted
  64 SMATCH=off
  65 
  66 CTFCONVERT_HOOK = && $(CTFCONVERT_O)
  67 CTFMERGE_HOOK = && $(CTFMERGE) -L VERSION -o $@ $(OBJS)
  68 $(OBJS) := CFLAGS += $(CTF_FLAGS)
  69 
  70 .KEEP_STATE:
  71 
  72 .PARALLEL:  $(OBJS)
  73 
  74 all: $(PROG)
  75 
  76 $(PROG): $(OBJS)
  77         $(LINK.c) $(OBJS) -o $@ $(LDLIBS) $(CTFMERGE_HOOK)
  78         $(POST_PROCESS)
  79 
  80 include         ../Makefile.lib
  81