48 #
49 # Include common rules.
50 #
51 include $(UTSBASE)/sun4u/opl/Makefile.opl
52
53 #
54 # Define targets
55 #
56 ALL_TARGET = $(BINARY)
57 LINT_TARGET = $(MODULE).lint
58 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
59
60 CLEANFILES += $(DRMACH_OFFSETS_H) $(DRMACH_OFFSETS_OUT)
61
62 #
63 # lint pass one enforcement
64 #
65 CFLAGS += $(CCVERBOSE)
66 CERRWARN += -_gcc=-Wno-parentheses
67 CERRWARN += -_gcc=-Wno-unused-function
68 CERRWARN += -_gcc=-Wno-uninitialized
69
70 #
71 # module dependencies
72 #
73 LDFLAGS += -dy -Nmisc/opl_cfg
74
75 #
76 # Default build targets.
77 #
78 .KEEP_STATE:
79
80 def: $(DEF_DEPS)
81
82 all: $(ALL_DEPS)
83
84 clean: $(CLEAN_DEPS)
85
86 clobber: $(CLOBBER_DEPS)
87
88 lint: $(LINT_DEPS)
|
48 #
49 # Include common rules.
50 #
51 include $(UTSBASE)/sun4u/opl/Makefile.opl
52
53 #
54 # Define targets
55 #
56 ALL_TARGET = $(BINARY)
57 LINT_TARGET = $(MODULE).lint
58 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
59
60 CLEANFILES += $(DRMACH_OFFSETS_H) $(DRMACH_OFFSETS_OUT)
61
62 #
63 # lint pass one enforcement
64 #
65 CFLAGS += $(CCVERBOSE)
66 CERRWARN += -_gcc=-Wno-parentheses
67 CERRWARN += -_gcc=-Wno-unused-function
68 CERRWARN += $(CNOWARN_UNINIT)
69
70 #
71 # module dependencies
72 #
73 LDFLAGS += -dy -Nmisc/opl_cfg
74
75 #
76 # Default build targets.
77 #
78 .KEEP_STATE:
79
80 def: $(DEF_DEPS)
81
82 all: $(ALL_DEPS)
83
84 clean: $(CLEAN_DEPS)
85
86 clobber: $(CLOBBER_DEPS)
87
88 lint: $(LINT_DEPS)
|