47
48 #
49 # Define targets
50 #
51 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
52 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
53
54 #
55 # Define dependencies on iommulib and acpica
56 #
57 LDFLAGS += -dy -N misc/iommulib -N misc/acpica
58
59 #
60 # For now, disable these checks; maintainers should endeavor
61 # to investigate and remove these for maximum coverage.
62 # Please do not carry these forward to new Makefiles.
63 #
64 CERRWARN += -_gcc=-Wno-unused-label
65 CERRWARN += -_gcc=-Wno-parentheses
66 CERRWARN += -_gcc=-Wno-unused-function
67 CERRWARN += -_gcc=-Wno-uninitialized
68
69 # needs work
70 $(OBJS_DIR)/immu_qinv.o := SMOFF += index_overflow
71
72 #
73 # Default build targets.
74 #
75 .KEEP_STATE:
76
77 def: $(DEF_DEPS)
78
79 all: $(ALL_DEPS)
80
81 clean: $(CLEAN_DEPS)
82
83 clobber: $(CLOBBER_DEPS)
84
85 install: $(INSTALL_DEPS) $(CONF_INSTALL_DEPS)
86
87 #
|
47
48 #
49 # Define targets
50 #
51 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
52 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
53
54 #
55 # Define dependencies on iommulib and acpica
56 #
57 LDFLAGS += -dy -N misc/iommulib -N misc/acpica
58
59 #
60 # For now, disable these checks; maintainers should endeavor
61 # to investigate and remove these for maximum coverage.
62 # Please do not carry these forward to new Makefiles.
63 #
64 CERRWARN += -_gcc=-Wno-unused-label
65 CERRWARN += -_gcc=-Wno-parentheses
66 CERRWARN += -_gcc=-Wno-unused-function
67 CERRWARN += $(CNOWARN_UNINIT)
68
69 # needs work
70 $(OBJS_DIR)/immu_qinv.o := SMOFF += index_overflow
71
72 #
73 # Default build targets.
74 #
75 .KEEP_STATE:
76
77 def: $(DEF_DEPS)
78
79 all: $(ALL_DEPS)
80
81 clean: $(CLEAN_DEPS)
82
83 clobber: $(CLOBBER_DEPS)
84
85 install: $(INSTALL_DEPS) $(CONF_INSTALL_DEPS)
86
87 #
|