# # CDDL HEADER START # # This file and its contents are supplied under the terms of the # Common Development and Distribution License ("CDDL"), version 1.0. # You may only use this file in accordance with the terms of version # 1.0 of the CDDL. # # A full copy of the text of the CDDL should have accompanied this # source. A copy of the CDDL is also available via the Internet at # http://www.illumos.org/license/CDDL. # # CDDL HEADER END # # # Copyright 2015 Nexenta Systems, Inc. All rights reserved. # # uts/intel/skd/Makefile # # This makefile drives the production of the skd module, which supports # the sTec S112x PCIe SSD card. # # intel architecture dependent # # # Paths to the base of the uts directory trees # UTSBASE = ../.. # # Define the module and object file sets. # MODULE = skd OBJECTS = $(SKD_OBJS:%=$(OBJS_DIR)/%) ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) CONF_SRCDIR = $(UTSBASE)/common/io/skd # # Include common rules. # include $(UTSBASE)/intel/Makefile.intel # # Define targets # ALL_TARGET = $(BINARY) $(CONFMOD) INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) # # Driver depends on blkdev # LDFLAGS += -dy -N drv/blkdev # # Overrides # # For now, disable these compiler warnigns; maintainers should endeavor # to investigate and remove these for maximum coverage. # Please do not carry these forward to new Makefiles. CERRWARN += -_gcc=-Wno-format CERRWARN += -_gcc=-Wno-format-extra-args # # Default build targets. # .KEEP_STATE: def: $(DEF_DEPS) all: $(ALL_DEPS) clean: $(CLEAN_DEPS) clobber: $(CLOBBER_DEPS) install: $(INSTALL_DEPS) # # Include common targets. # include $(UTSBASE)/intel/Makefile.targ