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


  25 # Copyright (c) 2018, Joyent, Inc.
  26 
  27 #
  28 # The mech_dummy shared object contains all the functionality needed to
  29 # support the Dummy GSS-API mechanism.
  30 #
  31 
  32 LIBRARY =       mech_dummy.a
  33 VERS =          .1
  34 OBJECTS =       dmech.o
  35 
  36 include $(SRC)/lib/Makefile.lib
  37 
  38 # There should be a mapfile here
  39 MAPFILES =
  40 
  41 CPPFLAGS +=     -I../../libgss -I$(SRC)/uts/common/gssapi/include \
  42                 -I$(ROOT)/usr/include/gssapi
  43 
  44 CERRWARN +=     -_gcc=-Wno-parentheses
  45 CERRWARN +=     -_gcc=-Wno-uninitialized
  46 
  47 # needs work
  48 SMATCH=off
  49 
  50 SRCDIR =        ../mech
  51 LIBS =          $(DYNLIB)
  52 LDLIBS +=       -lgss -lc
  53 
  54 .KEEP_STATE:
  55 
  56 all: $(LIBS)
  57 
  58 lint: lintcheck
  59 
  60 include $(SRC)/lib/Makefile.targ


  25 # Copyright (c) 2018, Joyent, Inc.
  26 
  27 #
  28 # The mech_dummy shared object contains all the functionality needed to
  29 # support the Dummy GSS-API mechanism.
  30 #
  31 
  32 LIBRARY =       mech_dummy.a
  33 VERS =          .1
  34 OBJECTS =       dmech.o
  35 
  36 include $(SRC)/lib/Makefile.lib
  37 
  38 # There should be a mapfile here
  39 MAPFILES =
  40 
  41 CPPFLAGS +=     -I../../libgss -I$(SRC)/uts/common/gssapi/include \
  42                 -I$(ROOT)/usr/include/gssapi
  43 
  44 CERRWARN +=     -_gcc=-Wno-parentheses
  45 CERRWARN +=     $(CNOWARN_UNINIT)
  46 
  47 # needs work
  48 SMATCH=off
  49 
  50 SRCDIR =        ../mech
  51 LIBS =          $(DYNLIB)
  52 LDLIBS +=       -lgss -lc
  53 
  54 .KEEP_STATE:
  55 
  56 all: $(LIBS)
  57 
  58 lint: lintcheck
  59 
  60 include $(SRC)/lib/Makefile.targ