44 CONF_SRCDIR = $(UTSBASE)/common/inet/ip
45
46 #
47 # Include common rules.
48 #
49 include $(UTSBASE)/sparc/Makefile.sparc
50
51 #
52 # Define targets
53 #
54 ALL_TARGET = $(BINARY) $(SRC_CONFFILE)
55 LINT_TARGET = $(MODULE).lint
56 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
57
58 #
59 # Linkage dependencies
60 #
61 LDFLAGS += -dy -Ndrv/ip
62
63 #
64 # Overrides
65 #
66 INC_PATH += -I$(UTSBASE)/common/io/bpf
67
68 #
69 # lint pass one enforcement
70 #
71 CFLAGS += $(CCVERBOSE)
72
73 #
74 # For now, disable these lint checks; maintainers should endeavor
75 # to investigate and remove these for maximum lint coverage.
76 # Please do not carry these forward to new Makefiles.
77 #
78 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
79 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
80 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
81
82 CERRWARN += -_gcc=-Wno-uninitialized
83
84 #
85 # Default build targets.
86 #
87 .KEEP_STATE:
88
|
44 CONF_SRCDIR = $(UTSBASE)/common/inet/ip
45
46 #
47 # Include common rules.
48 #
49 include $(UTSBASE)/sparc/Makefile.sparc
50
51 #
52 # Define targets
53 #
54 ALL_TARGET = $(BINARY) $(SRC_CONFFILE)
55 LINT_TARGET = $(MODULE).lint
56 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
57
58 #
59 # Linkage dependencies
60 #
61 LDFLAGS += -dy -Ndrv/ip
62
63 #
64 # lint pass one enforcement
65 #
66 CFLAGS += $(CCVERBOSE)
67
68 #
69 # For now, disable these lint checks; maintainers should endeavor
70 # to investigate and remove these for maximum lint coverage.
71 # Please do not carry these forward to new Makefiles.
72 #
73 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
74 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
75 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
76
77 CERRWARN += -_gcc=-Wno-uninitialized
78
79 #
80 # Default build targets.
81 #
82 .KEEP_STATE:
83
|