37 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
38 CONF_SRCDIR = $(UTSBASE)/common/inet/iptun
39
40 #
41 # Include common rules.
42 #
43 include $(UTSBASE)/sparc/Makefile.sparc
44
45 #
46 # Define targets
47 #
48 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
51
52 #
53 # Overrides
54 #
55 CFLAGS += $(CCVERBOSE)
56 LDFLAGS += -dy -Ndrv/dld -Nmisc/dls -Nmisc/mac -Ndrv/ip
57 INC_PATH += -I$(UTSBASE)/common/io/bpf
58
59 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
60 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
61
62 CERRWARN += -_gcc=-Wno-unused-label
63 CERRWARN += -_gcc=-Wno-switch
64 CERRWARN += -_gcc=-Wno-uninitialized
65
66 #
67 # Default build targets.
68 #
69 .KEEP_STATE:
70
71 def: $(DEF_DEPS)
72
73 all: $(ALL_DEPS)
74
75 clean: $(CLEAN_DEPS)
76
77 clobber: $(CLOBBER_DEPS)
|
37 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
38 CONF_SRCDIR = $(UTSBASE)/common/inet/iptun
39
40 #
41 # Include common rules.
42 #
43 include $(UTSBASE)/sparc/Makefile.sparc
44
45 #
46 # Define targets
47 #
48 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
51
52 #
53 # Overrides
54 #
55 CFLAGS += $(CCVERBOSE)
56 LDFLAGS += -dy -Ndrv/dld -Nmisc/dls -Nmisc/mac -Ndrv/ip
57
58 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
59 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
60
61 CERRWARN += -_gcc=-Wno-unused-label
62 CERRWARN += -_gcc=-Wno-switch
63 CERRWARN += -_gcc=-Wno-uninitialized
64
65 #
66 # Default build targets.
67 #
68 .KEEP_STATE:
69
70 def: $(DEF_DEPS)
71
72 all: $(ALL_DEPS)
73
74 clean: $(CLEAN_DEPS)
75
76 clobber: $(CLOBBER_DEPS)
|