41 LINTS           = $(PFP_SOCK_MOD_OBJS:%.o=$(LINTS_DIR)/%.ln)
  42 ROOTMODULE      = $(USR_SOCK_DIR)/$(MODULE)
  43 
  44 #
  45 #       Include common rules.
  46 #
  47 include $(UTSBASE)/intel/Makefile.intel
  48 
  49 #
  50 #       Define targets
  51 #
  52 ALL_TARGET      = $(BINARY)
  53 LINT_TARGET     = $(MODULE).lint
  54 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  55 
  56 #
  57 # lint pass one enforcement and OS version
  58 #
  59 CFLAGS += $(CCVERBOSE)
  60 
  61 LDFLAGS += -dy -Nfs/sockfs -Nmisc/dls -Nmisc/mac -Ndrv/bpf -Ndrv/ip
  62 INC_PATH += -I$(UTSBASE)/common/inet/sockmods -I$(UTSBASE)/common/io/bpf
  63 
  64 #
  65 # For now, disable these lint checks; maintainers should endeavor
  66 # to investigate and remove these for maximum lint coverage.
  67 # Please do not carry these forward to new Makefiles.
  68 #
  69 LINTTAGS        += -erroff=E_PTRDIFF_OVERFLOW -erroff=E_BAD_PTR_CAST_ALIGN
  70 
  71 CERRWARN        += -_gcc=-Wno-uninitialized
  72 CERRWARN        += -_gcc=-Wno-unused-label
  73 
  74 #
  75 #       Default build targets.
  76 #
  77 .KEEP_STATE:
  78 
  79 def:            $(DEF_DEPS)
  80 
  81 all:            $(ALL_DEPS)
  | 
 
 
  41 LINTS           = $(PFP_SOCK_MOD_OBJS:%.o=$(LINTS_DIR)/%.ln)
  42 ROOTMODULE      = $(USR_SOCK_DIR)/$(MODULE)
  43 
  44 #
  45 #       Include common rules.
  46 #
  47 include $(UTSBASE)/intel/Makefile.intel
  48 
  49 #
  50 #       Define targets
  51 #
  52 ALL_TARGET      = $(BINARY)
  53 LINT_TARGET     = $(MODULE).lint
  54 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  55 
  56 #
  57 # lint pass one enforcement and OS version
  58 #
  59 CFLAGS += $(CCVERBOSE)
  60 
  61 LDFLAGS += -dy -Nfs/sockfs -Nmisc/dls -Nmisc/mac -Ndrv/ip
  62 INC_PATH += -I$(UTSBASE)/common/inet/sockmods -I$(UTSBASE)/common/io/bpf
  63 
  64 #
  65 # For now, disable these lint checks; maintainers should endeavor
  66 # to investigate and remove these for maximum lint coverage.
  67 # Please do not carry these forward to new Makefiles.
  68 #
  69 LINTTAGS        += -erroff=E_PTRDIFF_OVERFLOW -erroff=E_BAD_PTR_CAST_ALIGN
  70 
  71 CERRWARN        += -_gcc=-Wno-uninitialized
  72 CERRWARN        += -_gcc=-Wno-unused-label
  73 
  74 #
  75 #       Default build targets.
  76 #
  77 .KEEP_STATE:
  78 
  79 def:            $(DEF_DEPS)
  80 
  81 all:            $(ALL_DEPS)
  |