1# 2# This file and its contents are supplied under the terms of the 3# Common Development and Distribution License ("CDDL"), version 1.0. 4# You may only use this file in accordance with the terms of version 5# 1.0 of the CDDL. 6# 7# A full copy of the text of the CDDL should have accompanied this 8# source. A copy of the CDDL is also available via the Internet at 9# http://www.illumos.org/license/CDDL. 10# 11 12# 13# Copyright 2017 Joyent, Inc. 14# 15 16UTSBASE = ../.. 17 18MODULE = i40e 19OBJECTS = $(I40E_OBJS:%=$(OBJS_DIR)/%) $(I40E_INTC_OBJS:%=$(OBJS_DIR)/%) 20LINTS = $(I40E_OBJS:%.o=$(LINTS_DIR)/%.ln) 21ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 22CONF_SRCDIR = $(UTSBASE)/common/io/i40e 23 24include $(UTSBASE)/intel/Makefile.intel 25 26CPPFLAGS += -I$(UTSBASE)/common/io/i40e 27CPPFLAGS += -I$(UTSBASE)/common/io/i40e/core 28 29ALL_TARGET = $(BINARY) $(CONFMOD) 30LINT_TARGET = $(MODULE).lint 31INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 32 33# 34# The Intel common code defines some values in header files that end up in all 35# of our objects. Therefore we don't try to lint for that. 36# 37LINTTAGS += -erroff=E_STATIC_UNUSED 38LINTTAGS += -erroff=E_ENUM_VAL_OVERFLOWS_INT_MAX 39 40# 41# The Intel common code defines some enums which are valid unsigned ints that 42# GCC is fine with, but not Studio. 43# 44CERRWARN += -_cc=-erroff=E_ENUM_VAL_OVERFLOWS_INT_MAX 45 46LDFLAGS += -dy -N misc/mac 47 48.KEEP_STATE: 49 50def: $(DEF_DEPS) 51 52all: $(ALL_DEPS) 53 54clean: $(CLEAN_DEPS) 55 56clobber: $(CLOBBER_DEPS) 57 58lint: $(LINT_DEPS) 59 60modlintlib: $(MODLINTLIB_DEPS) 61 62clean.lint: $(CLEAN_LINT_DEPS) 63 64install: $(INSTALL_DEPS) 65 66include $(UTSBASE)/intel/Makefile.targ 67